sudo apt-get install -y tmux 安装tmux
tmux 启动tmux
exit or ctrl+d 退出tmux
会话管理
tmux detach 分离会话 ctrl+b,d
tmux ls 查看tmux所有会话 ctrl+b,s
tmux attach -t <编号或名称> 接入会话
tmux kill-session -t <编号或名称> 杀死会话
tmux switch -t <编号或名称> 切换会话
tmux rename-session -t 0 <newname> 重命名会话 ctrl+b,$
窗格操作
ctrl+b, % 左右分割窗格
ctrl+b, " 上下分割窗格
ctrl+b, 方向键 切换窗格
ctrl+b, x 关闭当前窗格
ctrl+b, ! 当前窗格拆分为一个独立窗口
ctrl+b, z 当前窗格全屏显示或还原
ctrl+b, ctrl+方向键 调整当前窗格大小
ctrl+b, q 显示窗格编号
窗口管理
ctrl+b, c 创建一个新窗口
ctrl+b, p 切换上一个窗口
ctrl+b, n 切换下一个窗口
ctrl+b, <number> 切换到指定编号窗口
ctrl+b, w 从列表中选择窗口
ctrl+b, , 窗口重命名
其它命令
tmux list-keys 列出所有快捷键
tmux list-commands 列出所有命令及参数
tmux source-file ~/.tmux.conf 重新载入配置文件