On this page
Tmux
Tmux is a terminal multiplexer
an alternative to Screen. Tmux sessions are persistent, which means that programs running in Tmux will continue to run even if you get disconnected.
Command list
Create a new named session
$ tmux new -s <session-name>
List sessions
$ tmux ls
Attach to a session
$ tmux a -t <session-name>
Detach from the
screen
session:
Ctrl+b d
Kill the session:
$ tmux kill-session -t <session-name>
Further reading
Getting Started With Tmux: https://linuxize.com/post/getting-started-with-tmux
Tmux Commands Examples: https://ostechnix.com/tmux-command-examples-to-manage-multiple-terminal-sessions