Earlier quoted context omitted.
I use screen and tmux for different tasks. I'll use screen when I need to run a long-running task and can't keep my terminal session open. I use tmux with a script so that I can ssh into multiple nodes and broadcast the same commands to them all at the same time. Great for interactive deployments that I haven't been able to automate away with CFEngine just yet.
if you're running it on linux, is any reason to use screen for long-running tasks, instead of Docker?
Tmux 1.9 released
11–20 of 121 posts
Re: Tmux 1.9 released
#12Earlier quoted context omitted.
I use screen and tmux for different tasks. I'll use screen when I need to run a long-running task and can't keep my terminal session open. I use tmux with a script so that I can ssh into multiple nodes and broadcast the same commands to them all at the same time. Great for interactive deployments that I haven't been able to automate away with CFEngine just yet.
if you're running it on linux, is any reason to use screen for long-running tasks, instead of Docker?
$ ssh hostname
$ screen
# some time later, you get disconnected...
$ ssh hostname
$ screen -x
# back to where you were before getting disconnected.Re: Tmux 1.9 released
#13I remember using on the mac a branch of tmux with iTerm, where the gui understood tmux, giving native tabs and scrollback. I thought this was the greatest thing ever, but am now on Linux. Is this work still continuing does anyone know?
Re: Tmux 1.9 released
#14Earlier quoted context omitted.
I use screen and tmux for different tasks. I'll use screen when I need to run a long-running task and can't keep my terminal session open. I use tmux with a script so that I can ssh into multiple nodes and broadcast the same commands to them all at the same time. Great for interactive deployments that I haven't been able to automate away with CFEngine just yet.
if you're running it on linux, is any reason to use screen for long-running tasks, instead of Docker?
Re: Tmux 1.9 released
#15I remember using on the mac a branch of tmux with iTerm, where the gui understood tmux, giving native tabs and scrollback. I thought this was the greatest thing ever, but am now on Linux. Is this work still continuing does anyone know?
I know that scrolling is one of the first non-obvious changes that seem irritating at first. But after you get used to scrolling with the keyboard, I find myself missing this possibility on 'standard' terminal windows.
Suddenly using the mouse to scroll feels really awkward and inefficient.
Re: Tmux 1.9 released
#16Re: Tmux 1.9 released
#17I remember using on the mac a branch of tmux with iTerm, where the gui understood tmux, giving native tabs and scrollback. I thought this was the greatest thing ever, but am now on Linux. Is this work still continuing does anyone know?
Isn't one of the advantages of tmux is reduce / avoid using the mouse? I know that scrolling is one of the first non-obvious changes that seem irritating at first. But after you get used to scrolling with the keyboard, I find myself missing this possibility on 'standard' terminal windows. Suddenly using the mouse to scroll feels really awkward and inefficient.
Re: Tmux 1.9 released
#18Earlier quoted context omitted.
if you're running it on linux, is any reason to use screen for long-running tasks, instead of Docker?
The reason folks asked, "docker is a screen replacement?" is because one typical use case is using screen within an ssh session where you might get disconnected. screen holds onto the session so that you can ssh back in and continue from where you left off. $ ssh hostname $ screen # some time later, you get disconnected... $ ssh hostname $ screen -x # back to where you were before getting disconnected.
Seriously, the amount of commands linux has that most people don't know about is staggering. This link[1] was on HN just the other day.
[1] http://www.danielmiessler.com/blog/collection-of-less-common...
Re: Tmux 1.9 released
#19Has anyone used these, and can they give me a comparison: tmux/scree/byobu Currently a byobu user, it seems fine so far. Wondering what others offer more than that.
I use screen and tmux for different tasks. I'll use screen when I need to run a long-running task and can't keep my terminal session open. I use tmux with a script so that I can ssh into multiple nodes and broadcast the same commands to them all at the same time. Great for interactive deployments that I haven't been able to automate away with CFEngine just yet.
Re: Tmux 1.9 released
#20Moving to Emacs, I'm going to miss tmux more than I'll miss vim (there's evil-mode).