screen常用命令
介绍
- screen:窗口管理器,可以建立多个会话。你在xshell上跑命令,关闭xshell还能重新进入当前会话
安装
- yum install screen -y
- apt-get install screen
常用命令
- 创建作业:screen -S [name]
- 挂起作业:ctrl+a+d (离开作业,作业依然在服务端独立运行)
- 查看作业:screen -ls
- 重新链接:screen -r [ID]
- 结束作业:screen -X -S [ID] quit 或者 exit
- 上下分屏:ctrl + a -> shift + s
- 切换屏幕:ctrl + a -> tab