PROGRAMS

tmux

Article by:
Date Published:
Last Modified:

Overview

tmux uses an alternate screen buffer which is the same height and width as the parent terminal.

In all of the below code examples, <prefix> refers to the tmux prefix key combination. It is typically Ctrl-B by default, although it can vary from system to system.

Installing

Installing From Source

This example uses libevent v2.1.11, ncurses v6.1 and tmux v3.0a, but feel free to change the versions as long as they remain compatible with one another.

Install libevent:

1
2
3
4
5
6
wget https://github.com/libevent/libevent/releases/download/release-2.1.11-stable/libevent-2.1.11-stable.tar.gz
tar xvf libevent-2.1.11-stable.tar.gz
cd libevent-2.1.11-stable/
./configure
make
sudo make install

Install ncurses:

1
2
3
4
5
6
wget https://invisible-mirror.net/archives/ncurses/ncurses-6.1.tar.gz
tar xvf ncurses-6.1.tar.gz
cd ncurses-6.1/
./configure
make
sudo make install

Then install tmux:

1
2
3
4
5
6
wget https://github.com/tmux/tmux/releases/download/3.0a/tmux-3.0a.tar.gz
tar xvf tmux-3.0a.tar.gz
cd tmux-3.0a
./configure
make
sudo make install

If you get the error configure: error: "libevent not found" after running the tmux ./configure step, make sure you have install libevent as per the above instructions.

If you get the error: /usr/local/bin/tmux: error while loading shared libraries: libevent-X.X.so.X: cannot open shared object file: No such file or directory, you might need to run the below command before you can run tmux:

1
sudo ldconfig

The tmux source code can be found at https://github.com/tmux/tmux.

Post-Installation Protocol Version Mismatch

After installation, you might get a protocol version mismatch error when trying to start tmux, similar to the below example:

1
protocol version mismatch (client 7, server 8)

This occurs when there is a older version of the tmux server left running while you upgrade, and you are trying to connect to it post-upgrade with a newer tmux client. If you don’t care about losing your existing tmux sessions, you can use killall to remove the server process and start afresh:

1
sudo killall -9 tmux

Create And Attach To Sessions

To create and attach to a new, named tmux session, enter the following at the command prompt:

1
tmux new -s <session_name>

e.g.:

1
tmux new -s my_session

To attach to an already created named session:

1
tmux a -t <session_name>

Detach From A Session

To detach from a tmux session press:

Ctrl-B, D

while in the session. This will leave the session running in the background, so you can re-attach to it later.

Increase Scrollback Buffer Size

Add the following line to your ~/.tmux.conf file. This will allow you to retain more data (history) in the tmux scrollback buffer.

1
set -g history-limit 50000

Assign Key To Clear History

Add the following line to your ~/.tmux.conf file. This will allow you to press Ctrl-l to clear both the scrollback history and screen data at the same time.

1
bind -n C-l send-keys C-l \; clear-history

This will emulate similar behaviour to pressing Ctrl-K in bash.

Killing Sessions

Use kill-session to kill/delete a tmux session:

1
$ tmux kill-session -t my_session

Window Management

tmux supports windows to allow multiple terminals per tmux session. These windows are also commonly called tabs, but they do not have visible tab UI element in the terminal.

Useful tmux window keys (all of these have to be preceeded with the prefix key, which by default is Ctrl-B):

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
s    List sessions (select with arrow keys and enter)
$    Name session.
(    Cycle forward through sessions.
)    Cycle backward through sessions.
c    New window.
,    Name window.
w    List windows (select with arrow keys and enter)
f    Find window.
&    Kill window.
t    Show a big clock (kind of like a screen saver)

How To Prevent tmux From Renaming The Window

Renaming windows is great for organisation once you have more than one or two in use at the same time. However, tmux can annoyingly decide it wants to automatically rename your windows based on the current $PROMPT_COMMAND. To prevent this from happening, add the following to your .tmux.conf file:

1
set-option -g allow-rename off

Swapping/Moving Windows In The Same Session

The easiest way IMHO is to add the following to your .tmux.conf file:

1
2
bind-key -n C-S-Left swap-window -t -1
bind-key -n C-S-Right swap-window -t +1

This will allow you to press Ctrl-Shift-Left and Ctrl-Shift-Right to move the currently active tmux window left and right (i.e. swapping positions with the neighbouring windows).

Moving Windows Between Sessions

tmux allows you to move windows between different sessions with the move-window command.

1
<prefix>:move-window -t dst_session:window_id

You have to move the window to a free window_id (i.e., not one in use).

Re-ordering tmux Sessions

Unlike windows which can be arbitrarily re-ordered, tmux always orders sessions alphabetically by name. The best solution if you are looking to order sessions is to prefix them with sequential numeral/characters (e.g. 0_my_session, 1_my_other_session).

You can rename your current session from within tmux by typing:

1
<prefix> $

Enter a new name, and press Return.

Reloading The tmux Config File

From within a tmux session:

1
:source-file ~/.tmux.conf

or from your shell:

1
$ tmux source-file ~/.tmux.conf

Authors

Geoffrey Hunter

Dude making stuff.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License .

Related Content:

Tags

comments powered by Disqus