tmux既能夠進行遠程session的管理,即便ssh斷開,程序還會繼續運行,之前跑實驗要跑半個月的時候都是使用screen,能夠防止網絡斷了程序跑一半的狀況,如今發現tmux更強大。
和許多軟件同樣,須要在快捷鍵前加上前綴,習慣把默認的Ctrl+b 改成 Ctrl+a。html
新建session,若是沒有-s,會以數字0, 1, 2...命名:linux
$ tmux new -s test
列出當前可用的session:shell
$ tmux ls test: 1 windows (created Fri May 10 10:05:32 2019) [158x32] zsh: 1 windows (created Fri May 10 09:50:32 2019) [158x32]
detach, 使用命令detach-client(能夠簡寫爲detach或det),直接關掉gnome-terminial也會自動detach:vim
prefix + d tmux detach # detach當前tmux session tmux detach -s test
鏈接session, 命令是attach-session(能夠簡寫爲attach或a):windows
tmux a -t test
若是session在其它地方被使用,可使用-d在鏈接的同時,detach掉其它地方的鏈接,若是不detach掉的話,這邊的修改同時也會同步到其它地方:bash
tmux a -d -t test
列表顯示全部session:網絡
prefix + a
新建windowsession
prefix + c
切換到下一個window:app
prefix + n
切換到上一個window:ssh
prefix + p
切換到指定window:
prefix + window的編號(如第0個窗口就是0)
關閉當前window
prefix + x
列表顯示當前window:
prefix + w
修改當前窗口名稱,以方便記住:
prefix + ,
panel是tmux最具特點的功能,它能夠在一個界面中顯示多個shell操做界面。
左右分屏:
prefix + |
上下分屏:
prefix + -
切換到下一個分屏:
prefix + o
切換:
prefix + ijlk
最大化顯示當前panel,很好用,再操做一次返回之前狀態:
prefix + z
tmux有個痛點,也是我一度拋棄tmux的緣由。那就是鼠標滾屏與鼠標選中中鍵複製功能不能兼得。
若是不開啓鼠標滾屏,可使用選中複製。可是沒法滾屏查看上面的信息,只能經過prefix + PageUp
這樣的操做去查看。
若是開啓鼠標滾屏,那麼就沒法使用選中複製的功能,須要使用tmux提供的複製功能,一套新的複製系統,操做起來很彆扭,即便改爲vi的快捷鍵,實際上感受並很差用。如今發現能夠在選中和複製時分別按住Shift鍵來進行,感受這樣的妥協仍是能夠接受的。
set -g mouse on
tmux配置文件位置~/.tmux.conf:
set -g prefix ^a
unbind ^b
bind a send-prefix
setw -g mode-keys vi
set -g base-index 1
#水平或垂直分割窗口
unbind '"'
bind - splitw -v -c "#{pane_current_path}" # 分割成上下兩個窗口
unbind %
bind | splitw -h -c "#{pane_current_path}" # 分割成左右兩個窗口'"'
bind c new-window -c "#{pane_current_path}"
# 開啓鼠標模式
set-option -g mouse on
# 容許鼠標選擇窗格
setw -g mouse on
#set -g mouse-select-pane on
# 若是喜歡給窗口自定義命名,那麼須要關閉窗口的自動命名
#set-option -g allow-rename off
# Scroll History
set -g history-limit 30000
# Set ability to capture on start and restore on exit window data when running an application
setw -g alternate-screen on
# Lower escape timing from 500ms to 50ms for quicker response to scroll-buffer access.
set -s escape-time 50
# 若是對 vim 比較熟悉,能夠將 copy mode 的快捷鍵換成 vi 模式
set-window-option -g mode-keys vi
bind Escape copy-mode
bind -t vi-copy v begin-selection
bind -t vi-copy y copy-selection
unbind [
#unbind p
#bind p paste-buffer
#選擇分割的窗格
bind k selectp -U # 選擇上窗格
bind j selectp -D # 選擇下窗格
bind h selectp -L # 選擇左窗格
bind l selectp -R # 選擇右窗格
#從新調整窗格的大小
bind ^k resizep -U 10 # 跟選擇窗格的設置相同,只是多加 Ctrl(Ctrl-k)
bind ^j resizep -D 10 # 同上
bind ^h resizep -L 10 # ...
bind ^l resizep -R 10 # ...
#交換兩個窗格
bind ^u swapp -U # 與上窗格交換 Ctrl-u
bind ^d swapp -D # 與下窗格交換 Ctrl-d
# 狀態欄設置
# status bar with load and time
set -g status-bg blue
set -g status-fg '#bbbbbb'
set -g status-left-fg green
set -g status-left-bg blue
set -g status-right-fg green
set -g status-right-bg blue
set -g status-left-length 90
set -g status-right-length 90
set -g status-left '[#(whoami)]'
set -g status-right '[#(date +" %m-%d %H:%M ")]'
#set -g status-justify "centre"
set -g window-status-format '#I #W'
set -g window-status-current-format ' #I #W '
setw -g window-status-current-bg blue
setw -g window-status-current-fg green
set -g default-terminal "screen-256color"