- 安装
yum -y install screen
- 创建一个新的窗口
screen -S lxh
- 断开会话
关闭secureCRT或xshell窗口即可,或者关机
- 列出会话
[email protected] ~$screen -ls
There is a screen on:
21764.lxh (Detached)
1 Socket in /var/run/screen/S-root. - 重新连接会话
[email protected] ~$screen -r 21764
也可通过会话名连接
[email protected] ~$screen -r lxh - 杀死screen进程
[email protected] ~$screen -ls
There are screens on:
21850.lxh (Attached)
21764.lxh (Attached)
2 Sockets in /var/run/screen/S-root.
[email protected] ~$kill 21850
[email protected] ~$screen -ls
There is a screen on:
21764.lxh (Attached)
1 Socket in /var/run/screen/S-root.
时间: 2024-10-22 07:43:23