使用screen实现多终端同步显示
screen
GNU Screen是一款由GNU计划开发的用于命令行终端切换的自由软件。用户可以通过该软件同时连接多个本地或远程的命令行会话,并在其间自由切换。
安装
[06:52:40 root@C8-3-55 ~]#yum -y install screen
检查安装成功
[06:59:04 root@C8-3-55 ~]#type screen
screen 已被录入哈希表 (/usr/bin/screen)
一个终端创建新screen会话,名为copy
screen -S copy
另一终端查看并加入copy会话
[07:01:31 root@C8-3-55 ~]#screen -ls
There are screens on:
14119.copy (Attached)
13613.copy (Attached)
2 Sockets in /run/screen/S-root.
[07:02:34 root@C8-3-55 ~]#screen -x 13613.copy
退出会话
[06:57:59 root@C8-3-55 ~]#exit
exit
[screen is terminating]
建立会话方退出,才会终结对话
[07:04:35 root@C8-3-55 ~]#screen -ls
No Sockets found in /run/screen/S-root.
[07:04:41 root@C8-3-55 ~]#
* * *
胖并快乐着的死肥宅
* * *