windows

start /b,比如start /b run.bat。就相当于Linux下的run.sh &

ubuntu

nohup python train.py > logs/0920yolov5sxs.out 2>&1 &
  1. 1. 0 stdin (standard input)
  2. 2. 1 stdout (standard output)
  3. 3. 2 stderr (standard error)
  4. 4. nohup python -u main.py > test.out 2>&1 &
  5. 5.
  6. 6. nohup+最后面的& 是让命令在后台执行
  7. 7. >out.log 是将信息输出到out.log日志中
  8. 8. 2>&1 是将标准错误信息转变成标准输出,这样就可以将错误信息输出到out.log 日志里面来。
  1. 1. 使用"nohup" nohup ./myjob &”,忽略hangup信号,防止shell关闭时程序停掉。
  2. 2. 使用"setsid", 即“setsid ./myjob”。
  3. 3. 对已经运行的程序可以用 disown -hmyjob 来使某个作业忽略HUP信号。
  4. 4. 使用“screen". screen 下的操作会在screen下运行,无法在jobs中查看到。常用的命令有:
  5. a) 新建一个screen: screen-S my_screen_name. 建好后就可以进行所需要的操作了。
  6. b) 暂时断开screen: Ctrl-a d
  7. c) 重新打开screen: Ctrl-a screen_id
  8. d) 查看所有screen状态: screen -ls
  9. e) 终止screen: screen -S my_screen_name -Xkill
  10. f) 在当前窗口新建窗口: Ctrl-a c
  11. g) 退出当前窗口: exit
  12. h) 显示所有窗口列表:Ctrl-a w

自动重启

https://zhuanlan.zhihu.com/p/396959261