Linux后台运行程序方法。
1、&
可能是最简单的方法了。
command > out.file 2>&1 &
2、nohup,经常和&一起使用。
nohup command &
3、screen后台运行
apt install screen
#安装
screen -dmS new command
#新建一个窗口new,运行命令
4、setsid,很多系统应该是自带的。
setsid command
5、tmux,窗口管理器
apt install tmux
#安装
tmux new -s name
#新建一个name窗口。
Ctrl+b d,即可分离窗口。
上一篇:
arch设置开机自启动和定时任务下一篇:
JavaScript各种模拟器大集合