欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Linux从入门到放弃 后台运行服务

程序员文章站 2022-06-14 15:00:48
...
[[email protected] ~]# sleep 777 &
[1] 10148
[[email protected] ~]# ps aux | grep sleep
root      10148  0.0  0.0 107952   360 pts/1    S    20:04   0:00 sleep 777
root      10150  0.0  0.0 112708   976 pts/1    S+   20:05   0:00 grep --color=auto sleep
yum install -y screen
#创建会话
screen -S <会话名>
 
#查找会话
screen -ls
 
#进入会话
screen -r        #只有一个会话时可以不加id
screen -r <id>   #有多个会话时需指定id
 
#退出并删除该会话
exit
或
Ctrl + d
 
#删除中断的会话
screen -wipe
 
#修改已存在会话的名称
screen -S <原名称> -X sessionname <新名称>
相关标签: 后台运行 linux