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