SSH终端与网格视图

时间:2018-03-26 15:48:49

标签: node.js ssh terminal windows-shell

我已经在IT部门工作了很多年,并且使用了大量的终端但从未找到过ONE。 我看起来像下面的图片,我可以在窗口右侧的每个服务器上冲浪。

https://ibb.co/mGEkx7""

1 个答案:

答案 0 :(得分:0)

使用屏幕管理它(在unix上):

enter image description here

编辑你的screen.rc conf:

nano /etc/screenrc

将此行复制到文件末尾:

autodetach on
startup_message off
hardstatus alwayslastline
shelltitle 'bash'

hardstatus string '%{gk}[%{wk}%?%-Lw%?%{=b kR}(%{W}%n*%f %t%?(%u)%?%{=b kR})%{= w}%?%+Lw%?%? %{g}][%{d}%l%{g}][ %{= w}%Y/%m/%d %0C:%s%a%{g} ]%{W}'

创建一个名为ssh的屏幕:

 screen -dmS ssh

使用第一个ssh连接在屏幕上添加名为sshPane1的选项卡:

 screen -S ssh -X screen -t sshTab1 ssh user@monip

在屏幕上添加第二个名为sshPane2的标签,其中包含第二个ssh连接:

 screen -S ssh -X screen -t sshTab2 ssh user@monip2

创建一个脚本以自动执行此操作。

然后你可以看到你的屏幕:

screen -ls

enter image description here

您可以通过指定屏幕编号进入内部:

screen -r 9312

或打开最后创建的:

screen -r

现在你有了屏幕:

enter image description here

您可以退出:CTRL + A CTRL + D

您可以使用CTRL + A 1更改选项卡以转到第一个, CTRL + A 2转到第二个,......