Loading... ## 利用screen后台执行 ### 1.进入ssh - 进入ssh后切换root ``` sudo -i ``` ### 2.安装ipkg ``` wget http://ipkg.nslu2-linux.org/feeds/optware/syno-i686/cross/unstable/syno-i686-bootstrap_1.2-7_i686.xsh chmod +x syno-i686-bootstrap_1.2-7_i686.xsh sh syno-i686-bootstrap_1.2-7_i686.xsh ipkg update ``` ### 3.安装screen ``` ipkg install screen ``` **screen常用命令** - `screen -S xxx`建立一个名为xxx的作业 - `screen -ls` 查看作业列表 - `screen -r xxx`进入名为xxx的作业 --- ## 或者利用nohup ``` nohup xxx.sh > xxx.log 2>&1 & ``` 在上面的例子中: - `2>&1`是将标准错误(2)重定向到标准输出(&1),标准输出(&1)再被重定向输入到xxx.log文件中。 - 最后的`&`指的后台运行 `ps`查看后台进程 `kill`杀死后台进程 最后修改:2020 年 09 月 23 日 © 允许规范转载 打赏 赞赏作者 赞 如果觉得我的文章对你有用,请随意赞赏