一、安装
sudo apt-get install tmux # 先安装工具
# 接下来是下载配置文件,可以在GitHub上搜索oh-my-tmux,也可以执行以下命令
cd
git clone https://github.com/gpakosz/.tmux.git
ln -s -f .tmux/.tmux.conf
cp .tmux/.tmux.conf.local .
二、入门
1 命令行
tmux new -s basic # 首次创建一个新的 tmux窗口,“basic”是分屏的名字
tmux new -s name -d # 创建新窗口,名为“name”
tmux ls # 是tmux list-sessions,列出当前打开分屏的数量
tmux attach # 按顺序打开某一个分屏
tmux attach -t name # 打开指定的名为“name”的窗口
tmux kill-session -t name # 关闭名为“name”的窗口
2 快捷键
Ctrl +a c 创建一个新窗口
Ctrl +a & 关闭当前窗口
Ctrl +a 1/2/3 切换到指定编号窗口
Ctrl +a % 将当前窗口均分为左右两格
Ctrl +a " 将当前窗口均分为上下两格
Ctrl +a 上/下/左/右 切换窗口
Ctrl +a h/j/k/l 切换窗口
三、出错
tmux attach 时出错为:
出错:sessions should be nested with care, unset $TMUX to force
解决:执行 unset TMUX