# 源码编译 wget https://github.com/tmux/tmux/releases/download/2.5/tmux-2.5.tar.gz tar -xzf tmux-2.5.tar.gz cd tmux-2.5 ./configure && make && sudo make install
基本命令
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# 新建会话 tmux new -s session_name
# 列出会话 tmux ls
# 附加会话 tmux attach -t session_name
# 分离会话 Ctrl+b d
# 杀死会话 tmux kill-session -t session_name
窗口管理
窗格管理
配置文件 ~/.tmux.conf
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# 历史记录限制 set -g history-limit 10000
# 启用鼠标 set -g mouse on
# 状态栏设置 set -g status-bg black set -g status-fg white set -g status-left '[#S] ' set -g status-right ' %Y-%m-%d %H:%M '