tmux之基本使用

2022-09-13 03:36:11 字數 1228 閱讀 5037

安裝apt-get install tmux -y

檢視版本

root@node2:~# tmux -v

tmux 1.6

建立乙個會話

tmux new -s basic

或者tmux new-session -s basic

退出回話直接exit就可以了

效果圖開啟乙個tmux回話之後,執行htop。

建立乙個後台會話

tmux new -s backrun -d

前面所述tmux new -s basic 開啟回話,使用exit退出回話。還有一種簡單的快捷的鍵的方式使用ctrl+d斷開連線。

d是detach的縮寫。

重新連線回話,檢視會話情況。

tmux list-sessions

或者tmux ls

root@node2:~# tmux ls

s0: 1 windows (created tue aug  7 14:21:00 2012) [125x33] (attached)

s45: 1 windows (created tue aug  7 14:21:27 2012) [125x33] (attached)

windows: 1 windows (created tue aug  7 14:14:46 2012) [125x33] (attached)

root@node2:~# tmux list-sessions

s0: 1 windows (created tue aug  7 14:21:00 2012) [125x33] (attached)

s45: 1 windows (created tue aug  7 14:21:27 2012) [125x33] (attached)

windows: 1 windows (created tue aug  7 14:14:46 2012) [125x33] (attached)

root@node2:~

tmux attach -t s45

tmux kill-session -t s45

視窗本人認為就是類似vim一樣做視窗分割。

建立乙個會話叫做windows,有兩個視窗。

tmux new -s windows -n shell   # n引數命名第乙個視窗叫做shell

tmux基本使用

tmux基本使用 tmux是乙個優秀的終端復用軟體,即使非正常掉線,也能保證當前的任務執行,這一點對於遠端ssh訪問特別有用,網路不好的情況下仍然能保證工作現場不丟失 tmux命令都具有乙個字首命令 prefix 預設的是ctrl b,可以自己修改,改為ctrl a 在 tmux.conf中加入如下...

Tmux的基本使用命令

字首ctrl b用prefix代替 放掉ctrl b在按下其他鍵 建立 tmux new 不指定session name tmux new s session name 刪除session tmux kill session t session name tmux kill server 列出當前s...

Linux之Tmux使用教程

tmux中有3種概念,會話,視窗 window 窗格 pane 會話有點像是tmux的服務,在後端執行,我們可以通過tmux命令建立這種服務,並且可以通過tmux命令檢視,附加到後端執行的會話中。乙個會話可以包含多個視窗,乙個視窗可以被分割成多個窗格 pane tmux的安裝方法很簡單,可直接通過a...