详细教程:https://www.ruanyifeng.com/blog/2019/10/tmux.html
¶ 新建会话
tmux
底下的状态栏里最左边方括号里的就是自动分配的会话名称。
也可以手动指定会话名称:
tmux new -s <session-name>
¶ 关闭当前会话
Ctrl+d
或者输入exit
。
¶ 分离会话
Ctrl+b d
,或者输入
tmux detach
¶ 查看所有会话
tmux ls
¶ 接入会话
接入上一个会话,如果没有就新建会话:
tmux attach
接入指定会话:
tmux attach -t <session-name>
t是target的缩写。
有趣的是tmux允许重复接入一个会话,而screen不行。
此外,screen不能只读接入会话,但是tmux可以(这就是我换成tmux的原因):
tmux attach -rt <session-name>
¶ 杀死会话
杀死上一个会话:
tmux kill-session
杀死指定会话:
tmux kill-session -t <session-name>
¶ 复制模式
详见:tmux复制模式使用说明
进入复制模式:Ctrl+b [
。
退出复制模式:默认是q
或Esc
。
默认是上下左右箭头来移动光标的。但是可以通过在~/.tmux.conf
里加入:
set-window-option -g mode-keys vi
来设置成vi风格的光标操作方式,需要关闭所有的tmux会话,再重新打开才能生效。注意这个时候退出复制模式的快捷键变成了q
或Enter
。
在vi风格的光标操作方式中,可以ctrl+u
或者PgUp
上翻页,ctrl+d
或者PgDn
下翻页,这在默认设定中好像是做不到的。
进入复制模式之后,按空格选择要复制的起始位置,然后移动光标到要复制的结束位置,然后按Enter
复制,同时退出复制模式,按ctrl+]
可以粘贴(只能在tmux内粘贴)。
复制模式中,虽然不再显示新的输出,但是其实程序仍然在跑,在退出复制模式后新的输出就会显示出来。
¶ Sessions List view
ctrl+b s
可以用箭头快速浏览所有session,按enter
进入当前正在浏览的session。
¶ 插件
建议使用Tmux Plugin Manager管理插件:https://github.com/tmux-plugins/tpm
可用插件列表:https://github.com/tmux-plugins/list
¶ Tmux Plugin Manager
¶ apt安装
sudo apt install tmux-plugin-manager
然后Tmux Plugin
Manager就被安装到了/usr/share/tmux-plugin-manager
。
然后在~/.tmux.conf
中写入如下内容:
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch'
# set -g @plugin 'git@github.com:user/plugin'
# set -g @plugin 'git@bitbucket.com:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '/usr/share/tmux-plugin-manager/tpm'
¶ 手动安装
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
然后在~/.tmux.conf
中写入如下内容:
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch'
# set -g @plugin 'git@github.com:user/plugin'
# set -g @plugin 'git@bitbucket.com:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
手动安装的tmux plugin manager可以非交互式安装plugin:
# https://github.com/tmux-plugins/tpm/issues/6
~/.tmux/plugins/tpm/scripts/install_plugins.sh
¶ 激活Tmux Plugin Manager
可以先把所有tmux窗口都关闭,然后再新开tmux的时候,新开的tmux中就会自动读取~/.tmux.conf
,从而激活Tmux
Plugin Manager。
如果要在已有的tmux里激活新安装的Tmux Plugin Manager,需要这样:
# 在已有tmux窗口里执行此命令
tmux source ~/.tmux.conf
只要在一个tmux窗口里执行它,所有已有的tmux窗口都会激活Tmux Plugin Manager。
¶ 安装并激活插件
往~/.tmux.conf
里加入set -g @plugin '...'
,然后在tmux窗口里按ctrl+b
然后按shift+i
即可。新插件会被自动clone到~/.tmux/plugins/
并且激活。安装并激活插件的时候会卡一下。完成之后会显示这个:
TMUX environment reloaded.
Done, press ENTER to continue.
注意有的是按ENTER继续,有的是按ESCAPE继续,不知道为什么。
¶ tmux-sensible
repo: https://github.com/tmux-plugins/tmux-sensible
这是一款可以让所有用户都接受的插件。我也不清楚这个到底干了啥。
set -g @plugin 'tmux-plugins/tmux-sensible'
¶ tmux-logging
repo: https://github.com/tmux-plugins/tmux-logging
按ctrl+b
再按shift+p
即可把tmux窗口里的内容log到文件。
set -g @plugin 'tmux-plugins/tmux-logging'
¶ tmux-notify
在命令完成之后发送提醒。
repo: https://github.com/rickstaa/tmux-notify/
set -g @plugin 'rickstaa/tmux-notify'
ctrl+b
,然后再m
,即可开始监控命令是否完成,完成之后会自动发送一条通知,默认会发送到用户的桌面。
tmux-notify识别命令有没有执行完的原理很简单,就是监视屏幕上的字符是不是以$
、#
、%
结尾的。所以如果你的shell
prompt不是以这几个字符结尾的,就要更改shell
prompt,或者增加shell后缀:https://github.com/rickstaa/tmux-notify/#add-additional-shell-suffixes。目前已知oh
my
zsh的prompt是没有后缀的,所以只能往它的prompt里加入后缀:在~/.zshrc
里的最后加上PROMPT="$PROMPT%# "
,其中%#
在普通用户模式下显示为%
,在root模式下显示为#
,参考:https://scriptingosx.com/2019/07/moving-to-zsh-06-customizing-the-zsh-prompt/
tmux-notify还支持在命令完成时执行用户自定义的命令:https://github.com/rickstaa/tmux-notify/#execute-custom-notification-commands,可以实现邮件提醒等。下面介绍基于mailx的邮件提醒的方法。
首先安装并配置mailx: mailx v15_compat配置教程
然后在.tmux.conf
里加入:
ArchLinux
set -g @tnotify-custom-cmd 'echo "tmux程序跑完啦" | mailx --subject="tmux complete notification" 接收人@163.com'
Debian
set -g @tnotify-custom-cmd 'echo "tmux程序跑完啦" | s-nail --subject="tmux complete notification" 接收人@163.com'
如果要给notification带上session name,可以这样:
set -g @tnotify-custom-cmd 'echo "tmux $(tmux display-message -p \#S) 程序跑完啦" | s-nail --subject="tmux complete notification" 接收人@163.com'
参考:https://superuser.com/a/410197
tty=$(tty)
for s in $(tmux list-sessions -F '#{session_name}' 2>/dev/null); do
tmux list-panes -F '#{pane_tty} #{session_name}' -t "$s"
done | grep "$tty " | awk '{print $2}'
来源:https://superuser.com/a/1202709/1677998
注意是grep "$tty "
,原答案的grep "$tty"
会混淆/dev/pts/1
和/dev/pts/12
。可惜reputation不够,不能comment。
不要用数字的session
name,不然tmux list-panes -F '#{pane_tty} #{session_name}' -t 数字
会把数字
看作是window编号而不是name。
直接运行session-name.sh
可以。但是在tmux-notify里就不行。
¶ 存在的问题
tmux会用空格填充到行末。如果直接复制tmux中的文本的话,会把后面填充的空格也复制出来。screen
没有这个问题:https://unix.stackexchange.com/a/333983
¶ 参考文献
https://unix.stackexchange.com/questions/13787/is-there-a-way-to-run-screen-in-read-only-mode