文章目录
- 1. 前言
- 2. screen是什么?
- 3. screen使用场景描述
- 3. screen常用命令
- 4. 小结
- 5. 参考
1. 前言
实际开发中用到的云服务器,如果项目使用的是python,需要利用项目运行一些时间较长的项目程序脚本的话,由于我们通过ssh连接远端服务器,网络异常或者占用服务器较久可能会中断ssh的连接,此时当我们再进入服务器的时候,我们运行脚本的程序窗口由于我们的连接中断,之前的会话就丢失无法恢复了。
如果我们想要实现与服务器断开后重连依然可以找到脚本运行的程序窗口,则可以用screen命令来实现新建窗口与会话恢复。
2. screen是什么?
在linux服务器中,使用man screen
命令可以看到关于screen的使用手册。
man screen
对screen的介绍如下:
Screen is a full-screen window manager that multiplexes a physical terminal between several
processes (typically interactive shells). Each virtual terminal provides the functions of a
DEC VT100 terminal and, in addition, several control functions from the ISO 6429 (ECMA 48,
ANSI X3.64) and ISO 2022 standards (e.g. insert/delete line and support for multiple character
sets). There is a scrollback history buffer for each virtual terminal and a copy-and-paste
mechanism that allows moving text regions between windows.Screen是一个全屏窗口管理器,它在多个物理终端之间多路传输物理终端进程(通常是交互式shell)。每个虚拟终端提供的功能DEC VT100终端以及来自ISO 6429的几个控制功能(ECMA 48,ANSI X3.64)和ISO 2022标准(例如插入/删除行和支持多个字符套)。每个虚拟终端都有一个滚动历史缓冲区和一个复制粘贴允许在窗口之间移动文本区域的机制。
When screen is called, it creates a single window with a shell in it (or the specified com‐
mand) and then gets out of your way so that you can use the program as you normally would.
Then, at any time, you can create new (full-screen) windows with other programs in them
(including more shells), kill existing windows, view a list of windows, turn output logging on
and off, copy-and-paste text between windows, view the scrollback history, switch between windows in whatever manner you wish, etc. All windows run their programs completely independent of each other. Programs continue to run when their window is currently not visible and even when the whole screen session is detached from the user’s terminal. When a program terminates, screen (per default) kills the window that contained it. If this window was in the foreground, the display switches to the previous window; if none are left, screen exits.当调用screen时,它会创建一个带有shell的带个窗口(或者指定的command),然后你就可以像平常一样使用这个程序了。然后在任何时候,你都可以创建包含其他程序的新(全屏)窗口(包括更多的shell)、杀死现有窗口、查看窗口列表、打开或关闭日志记录、在窗口之间文本的复制粘贴、查看滚动历史记录、以及任何你希望在屏幕切换间能做的事情等。所有的窗口运行的程序彼此之间完全独立。程序在其窗口不可见的时候仍将继续运行,甚至当整个屏幕会话从用户的终端分离时。当程序中止时,screen(默认情况下)会杀死包含它的窗口。如果当前窗口处于前置位置,则切换到其上一个窗口显示;如果没有剩余窗口,则screen退出。
从上面的介绍中,可以知道screen主要有两个能力:
- 多窗口
- 可以通过screen命令创建多个彼此独立运行的窗口,且可以在各个窗口进行切换执行一些诸如文本粘贴行为的动作。
- 会话恢复
- 这个是screen比较重要的一个特点,主要是可以保持内部运行的会话恢复,当用户与远程服务器因网络连接而中断,用户再次登录到远程服务器,依然可以通过screen进入到之前窗口,对之前的会话进行恢复并进行后续的操作。
3. screen使用场景描述
正常情况下,我们登录远端服务器,执行命令,获取结果,结束。
异常情况下,我们登录远端服务器,执行命令,由于网络原因,导致连接中断,再次登录,丢失之前的会话。
正常情况下,我们登录远端服务器,利用screen创建新的会话窗口,在新窗口内执行命令,等待结果过程中,由于网络原因,连接中断,此时再次连接,利用screen命令进入之前的会话窗口,等待获取结果,结束。
可以看出,对于想要维持会话的一些程序或者脚本的执行,使用screen,可以帮助我们维持会话,当再次登录时,可以快速的进行会话恢复。
3. screen常用命令
// 开启一个新的窗口
screen -S test_screen// 退出当前screen
Ctrl+a,d// 单独删除当前screen,不会有detached的行为
Ctrl+d// 重新进入当前窗口
screen -r test_screen// list展示所有的窗口
screen -ls // 踢掉前一个用户,然后登录
screen -D -r test_screen// 删除这个detached窗口
screen -S test_screen -X quit// 在screen内创建新的screen,不停的使用这个命令,你就会发现你不会不断地进入新的screen
Ctrl+a,c// 在不同的screen间切换,有至少2个窗口的时候才可以切换
Ctrl+a,Ctrl+a// 切换到下一个窗口,如果到了最大的,下一个就是0了
Ctrl+a,n
// 切换到上一个窗口,如果到最小的了,上一个就是最大的
Ctrl+a,p
// 切换到指定窗口,比如Ctrl+a,3表示切换到第三个窗口
Ctrl+a,0~9
补充
当窗口运行较久可能会到Attached状态,此时我们使用screen -r test_screen
会告诉你没有对应的绑定窗口,此时我们需要先detached串钩然后再进即可。
# 表示先detached窗口,然后再进入test_screen窗口
$ screen -d -r test_screen
4. 小结
利用screen的会话恢复功能,对于执行一些耗时较久的程序或者脚本还是很有帮助的,尤其是当我们执行的脚本我们不希望这个有中断的时候,这个时候使用screen就可以为我们提供较大的帮助。
5. 参考
- Screen:Shell 孵化器