# 安装
sudo apt-get install tmux
# 创建新Session
tmux new -s <session-name>
# 接入Session
tmux attach -t <session-name>
# 挂起Session
Ctrl+b d
# 终结Session
tmux kill-session <session-name>
# 列出所有Session
tmux ls
# 重命名Session
tmux rename-session -t <old-name> <new-name>
网友评论