nohup
如果你正在运行一个进程,而且你觉得在退出帐户时该进程还不会结束,那么可以使用nohup命令
语法:nohup Command [ Arg ... ] [ & ]
一般我们可在结尾加上"&"来将命令同时放入后台运行,也可用">filename 2>&1"来更改缺省的重定向文件名
nohup 示例
[quote]# nohup ping www.ibm.com &
[1] 3059
nohup: appending output to `nohup.out'
# ps -ef |grep 3059
root 3059 984 0 21:06 pts/3 00:00:00 ping www.ibm.com
root 3067 984 0 21:06 pts/3 00:00:00 grep 3059
# [/quote]
[quote]关于让进程在服务器后台运行的方案可以参考以下文章:
http://www.ibm.com/developerworks/cn/linux/l-cn-nohup/[/quote]
如果你正在运行一个进程,而且你觉得在退出帐户时该进程还不会结束,那么可以使用nohup命令
语法:nohup Command [ Arg ... ] [ & ]
一般我们可在结尾加上"&"来将命令同时放入后台运行,也可用">filename 2>&1"来更改缺省的重定向文件名
nohup 示例
[quote]# nohup ping www.ibm.com &
[1] 3059
nohup: appending output to `nohup.out'
# ps -ef |grep 3059
root 3059 984 0 21:06 pts/3 00:00:00 ping www.ibm.com
root 3067 984 0 21:06 pts/3 00:00:00 grep 3059
# [/quote]
[quote]关于让进程在服务器后台运行的方案可以参考以下文章:
http://www.ibm.com/developerworks/cn/linux/l-cn-nohup/[/quote]