后台运行某程序
nohup train.py &
tail -f nohup.out
进程
-
查看python进程
ps -ef | grep python
-
查看进程详细信息
先执行cd /proc/{PID}
再执行ls -l
-
干掉进程
kill -9 {PID}
nohup train.py &
tail -f nohup.out
ps -ef | grep python
先执行cd /proc/{PID}
再执行ls -l
kill -9 {PID}
本文标题:linux 后台运行/查看进程
本文链接:https://www.haomeiwen.com/subject/dmkegftx.html
网友评论