gnu-screen – tmux vs. Screen: A Comparison

gnu-screentmux

I'm about to get back into using GNU Screen, but I have been hearing people occasionally mention tmux as a better alternative. Does it really offer an alternative to all the features Screen offers, such as activity monitoring in different windows, etc.? What are the pros and cons of each?

Best Answer

Some of the (major) reasons I prefer tmux over screen:

  • Status bar is much easier to use. You can easily set up different text/styles for current window, windows with activity, etc. and you can put things on the left and right of the status bar, including shell commands that can be run at a specified interval (default 15s).
  • Almost any command you can run inside tmux can be run from a shell with tmux command [args]. This makes it very easily scriptable, as well as making it easy to do complex commands.
  • Much more accurate automatic window renaming. While screen sets the title based on the first word of the command, and requires shell configuration to do even that in a shell window, tmux keeps track of what processes are actually running in each window, and updates the title accordingly. This way you get dynamic renaming with any shell and zero configuration. For example: Let's say you're running Z Shell; the window's name would be "zsh". Now let's say you want to edit some configuration file, so you type sudo emacs /etc/somefile. While sudo is asking for your password, the window's name will be "sudo", but once you've done that and sudo launches emacs, the title will be "emacs". When you're all done and you exit emacs, the title will change back to "zsh". This is pretty useful for keeping track of windows, and it can also be especially useful in specific situations, like if you have some long-running process in another window that occasionally prompts you for input using dialog; the window name would change to "dialog" when that happened, so you would know you had to switch to that window and do something.
  • Nicer session handling (IMHO). You can do a lot more with sessions within tmux itself. You can easily switch, rename, etc. and you can move and share windows between sessions. It also has a different model, where each user has a server which controls his/her sessions and which the client connects to. The downside of this is that if the server crashes, you lose everything; I've never had the server crash on me, though.
  • tmux seems to be more actively developed. There are updates pretty frequently, and you can file a bug report or feature request according to this FAQ and get an answer within a few days. However, as pointed out in a comment, screen's lack of development is mostly because it's stable. It's basically done, not abandoned. That said, if it can't do something now, it probably won't ever be able to, and long-standing issues are less likely to be fixed. (Though, to be fair, vertical splitting is one feature that screen didn't have when I first answered this question and does have now.)

Those are some of the reasons I personally switched from screen to tmux. That's not to say screen doesn't have advantages, but FWIW I can't think of anything I've missed since switching. The other answer by a paid nerd has a more objective list of Pros/Cons, though anecdotally I'll say that I've never had the issues with crashes or missed keystrokes that are mentioned there. (Those could have been OS-dependent. I've only used it on Linux and FreeBSD.)

Related Question