Linux运行程序时,中途出现意外怎么办?
有两种解决方安案
第一种是nohup命令
# nohup bash /usr/local/sbin/sleep.sh &
以上这种方法在当前目录下生成一个nohup.out文件,并把输出追加到这个文件中
第二种方法就是screen命令
# yum install screen.x86_64 -y # screen ctrl+a,再按d [detached from 12185.pts-0.localhost] [[email protected] ~]# screen -ls There is a screen on: 12185.pts-0.localhost (Detached) 1 Socket in /var/run/screen/S-root. # screen -r 12185 # exit # screen -S "screen_test"
原文地址:http://blog.51cto.com/13480443/2072669
时间: 2024-10-01 20:20:58