Tmux简介

Linux环境多session管理工具

安装

yum install tmux

使用

在tmux中使用的指令

每次要先按激活键(默认 ctrl+b),告诉tmux准备接收指令

保存和恢复当前session

用于保存当前的session配置,下次直接打开(比如重启后),非常爽。

  1. Tmux Plugin Manager克隆到本地
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
  1. 更新~/.tmux.conf
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'

# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
  1. 在Tmux里重新加载配置 tmux source ~/.tmux.conf
  2. 在Tmux中使用快捷prefix + I安装配置
  3. 激活键 ctrl+s 保存当前session
  4. 激活键 ctrl+r reload上一次保存的session