介绍一款好用的终端工具Screen

系统 Linux
screen 是一款由 GNU 开发的命令行终端工具,它提供了从多个终端窗口连接到同一个 shell 会话(会话共享)。当网络中断,或终端窗口意外关闭是,中 screen 中运行的程序任然可以运行。

 screen 是一款由 GNU 开发的命令行终端工具,它提供了从多个终端窗口连接到同一个 shell 会话(会话共享)。当网络中断,或终端窗口意外关闭是,中 screen 中运行的程序任然可以运行(系统自带的终端窗口,当窗口意外关闭时,在该终端窗口中运行的程序也会终止。)。

安装 screen 工具

  1. it@serverc:~$ sudo apt install screen -y 

*  在 CentOS 中,你需要先安装 epel-release 才可以安装 screen( 在 CentOS 中安装软件使用 yum 或者 dnf )

会话共享

在 A 主机上创建一个名为 it 的 screen 会话 

  1. it@serverc:~$ screen -S it 

在 B 主机上,通过 ssh 连接到 A 主机,并查通过 -ls 选项看当前已经存在的 screen 会话 

  1. it@workstation:~/ansible$ ssh it@10.10.10.108  
  2. it@10.10.10.108's password:   
  3. Welcome to Ubuntu 20.04.1 LTS (GNU/Linux 5.4.0-60-generic x86_64)  
  4. ... ... ... ...  
  5. ... ... ... ...  
  6. Last login: Thu Jan 14 13:57:32 2021  
  7. it@serverc:~$ screen -ls  
  8. There is a screen on:  
  9.  2107.it (01/14/21 07:30:27) (Attached)  
  10. 1 Socket in /run/screen/S-it. 

然后加入到该会话 

  1. it@serverc:~$ screen -x it 

这样就可以两边共享一个 screen 会话,不管谁运行什么命令,另一个都可以看到;

当你需要退出会话时,你可以运行 exit 来退出会话(当运行 exit 时,两边都会退出 screen 会话。),也可以通过Ctrl+A,D(Ctrl + A 然后按 D,退出单个会话)。

当网络中断或窗口意外关闭后,任务继续运行

在 Linux 打开两个终端窗口,我们分部称他们为 A 窗口和 B 窗口,在 A 窗口中运行 ping 

  1. it@workstation:~$ ping 10.10.10.1  
  2. PING 10.10.10.1 (10.10.10.1) 56(84) bytes of data.  
  3. 64 bytes from 10.10.10.1: icmp_seq=1 ttl=64 time=1.21 ms 
  4. 64 bytes from 10.10.10.1: icmp_seq=2 ttl=64 time=1.22 ms  
  5. 64 bytes from 10.10.10.1: icmp_seq=3 ttl=64 time=1.19 ms  
  6. ... ... ... ... 
  7. ... ... ... ... 

然后在 B 窗口,运行 ps aux 获取系统进程,然后通过 grep 进行筛选 

  1. it@workstation:~$ ps aux | grep ping  
  2. it          2336  0.0  0.2 317144  8740 ?        Ssl   2020   0:17 /usr/libexec/gsd-housekeeping  
  3. it        153585  0.0  0.0  12764   872 pts/3    S+   14:53   0:00 ping 10.10.10.1  
  4. it        153646  0.0  0.0  12108   736 pts/2    S+   14:56   0:00 grep --color=auto ping 

我们看到 ping 正在运行

当关掉 A 窗口后,我们再到 B 窗口(此时就只有一个窗口了)运行之前的 ps aux 命令 

  1. it@workstation:~$ ps aux | grep ping  
  2. it          2336  0.0  0.2 317144  8740 ?        Ssl   2020   0:17 /usr/libexec/gsd-housekeeping  
  3. it        153651  0.0  0.0  12108  2964 pts/2    S+   14:57   0:00 grep --color=auto ping 

此时 ping 命令已经结束了

重新打开一个新的终端窗口,作为 A 窗口,运行 screen 

  1. it@serverc:~$ screen -S test 

然后在 screen 窗口中运行 ping 命令 

  1. it@workstation:~$ ping 10.10.10.1  
  2. PING 10.10.10.1 (10.10.10.1) 56(84) bytes of data.  
  3. 64 bytes from 10.10.10.1: icmp_seq=1 ttl=64 time=1.21 ms  
  4. 64 bytes from 10.10.10.1: icmp_seq=2 ttl=64 time=1.15 ms  
  5. 64 bytes from 10.10.10.1: icmp_seq=3 ttl=64 time=1.21 ms  
  6. ... ... ... ...  
  7. ... ... ... ... 

然后关闭 A 窗口,回到 B 窗口,运行 ps aux 命令; 

  1. it@workstation:~$ ps aux | grep ping  
  2. it          2336  0.0  0.2 317144  8684 ?        Ssl   2020   0:17 /usr/libexec/gsd-housekeeping  
  3. it        154964  0.0  0.0  12768   940 pts/3    S+   15:02   0:00 ping 10.10.10.1  
  4. it        154986  0.0  0.0  12108   736 pts/4    S+   15:05   0:00 grep --color=auto ping 

我们发现 ping 命令还在继续运行

当我们想回到之前的 ping 会话,可以通过 screen -r 恢复会话 

  1. it@workstation:~$ screen -r test 

*  如果只有一个 screen 会话,后面的会话名称可以省略不写,如果你不知道,或者忘了会话命令,你可以通过 screen -ls 查看当前主机运行的 screen 会有。

上下分屏

创建一个 screen 会话

  1. it@serverc:~$ screen -S test 

按Ctrl+A,然后按Shift+S开启分屏;

按Ctrl+A,然后再按Tab,切换到下面屏幕

但此时下面屏幕什么还没有,你需要通过Ctrl+A,然后按C在下面屏幕中创建终端

这样我们就可以在下面屏幕执行命令了,如果我们需要在不同的屏幕之间切换,可以通过 按Ctrl+A,然后再按Tab来切换。

当需要退出时,我们可以通过 exit 命令退出(在一个屏幕运行 exit 命令后,只是终端退出了,分屏的状态并没有退出,所以你需要通过前面的方法,切换到另一个屏幕上,再次运行 exit 退出)。 

 

责任编辑:庞桂玉 来源: 良许Linux
相关推荐

2021-01-27 13:16:39

ScreenLinux命令

2021-04-01 10:22:42

工具Linux文件

2022-05-26 17:40:51

Linux开源

2022-07-28 15:46:08

Linux工具

2022-07-04 08:48:36

KubernetesDatreeLinux

2022-08-15 08:02:09

Go程序函数

2020-06-01 16:45:44

Linux终端Terminus

2022-04-30 09:49:58

终端工具插件

2015-10-27 13:45:58

CloneAppWindows工具

2019-08-02 14:45:22

阿里Java命令

2021-07-07 06:52:17

云图word-cloud工具

2019-07-22 09:24:54

LinuxMySQL数据库

2011-01-19 13:19:39

Thunderbird插件

2022-09-08 09:00:38

Ansible开源

2011-08-09 09:16:44

Eclipse

2021-07-13 07:03:18

Linux远程工具

2022-06-28 07:14:23

WizTree磁盘文件清理

2021-10-28 18:02:21

RustGitLinux

2021-04-16 07:31:50

工具Postman接口

2022-05-25 16:59:27

Kubectl-IcKubernetesPod
点赞
收藏

51CTO技术栈公众号