Ubuntu后台运行、查看、 终止python

ps -ef
 1656  ps -aux|grep train_wvh64.py
 1657  kill -9 10871
 1658  ps -aux|grep train_wvh64.py
 

运行

nohup python -u R.py > out.log 2>&1 &

查看

  1. ps -ef

  2.  
  3. ps -aux|grep chat.js

终止

kill -9  进程号

猜你喜欢

转载自blog.csdn.net/gdengden/article/details/89431324