screen 后台实时执行命令

我的未来我决定 提交于 2019-11-26 00:25:35

1、安装screen软件包

[root@localhost ~]# rpm -ivh /mnt/Packages/screen-4.1.0-0.21.20120314git3c2946.el7.x86_64.rpm
或者
[root@localhost ~]# yum -y install screen

2、直接在命令行键入screen命令

3、[root@localhost ~]# vim 1.sh
命令模式按ctrl+a+d,出现[detached] 即可,再关闭pst

4、重新打开一个终端执行以下命令
[root@localhost ~]# screen -ls
There is a screen on:
40510.pts-0.localhost (Detached)
1 Socket in /var/run/screen/S-root.

5、调出挂起的程序
[root@localhost ~]# screen -r 40510

6、如果你想终止screen则直接把你当前使用的终端关掉就可以了,或者exit

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!