lxq.link
postscategoriestoolsabout

Primary Commands for tmux

Start new named session:

tmux new -s [session name]

List sessions:

tmux ls

Attach to named session:

tmux a -t [name of session]

Kill named session:

tmux kill-session -t [name of session]

Kill tmux server, along with all sessions:

tmux kill-server

Detach from session:

ctrl+b d

Split panes horizontally:

ctrl+b "

Split panes vertically:

ctrl+b %

Kill current pane:

ctrl+b x

Move to another pane:

ctrl+b [arrow key]

Scroll tmux

ctrl+b [
# press q or esc to quit

Show help

ctrl+b ?
# press q to quit 
2020-05-14