tmux Notes
· ☕ 2 min read · ✍️ Ben Mason
tmux Notes https://tmuxcheatsheet.com/
Structure Client \-- Session +-- Window 0 | |-- Pane 0 | |-- Pane 1 +-- Window 1 |-- Pane 0 Sessions Create session
tmux new -s <name>
Detach
Ctrl-b d
Show sessions
tmux ls
Attach to session
tmux attach -t 0
Rename session
tmux rename-session -t <session number or name> <session number or name>
Kill session
tmux kill-session -t <session number or name>
Ctrl-b $ Rename Current session