当前位置:网站首页>【nohup】nohup命令的简单使用
【nohup】nohup命令的简单使用
2022-08-03 05:27:00 【寻找永不遗憾】
1 nohup时
执行下方命令后,将 标准输出(1,默认可不写)、错误信息(2) 写入到 output.log 文件中。
nohup python train.py >output.log 2>&1 &
nohup hb_mapper makertbin -c xx.yaml --model-type onnx 2>&1 &
nohup sh build_efficientnet.sh >efficientnet.log 2>&1 &
最后那个&
的作用:
- 能进行输入操作(比如输入命令、换行、打空格等),可进行交互 输入和输出的操作。
- 关闭客户端后命令仍然会运行。
更详细的解读参考链接:
https://blog.csdn.net/xiaojin21cen/article/details/88991768
2 nohup后
查看正在运行的后台进程:
jobs -l
jobs命令只能看运行nohup命令的终端没关时,关闭终端后,在另一个终端使用jobs就无法看到后台跑的程序了,此时利用ps
ps -ef
结合grep使用会更好,例如ps -ef | grep makertbin
边栏推荐
- Prometheus监控容器、pod、邮件告警
- 数组与字符串15-最大连续1的个数
- 9. Please introduce the class loading process, what is the parent delegation model?
- Podman一篇就学会
- Difference between @JsonProperty and JSONField?
- 在Zabbix5.4上使用ODBC监控Oracle数据库
- 【面筋1】一些没什么标准答案的问题
- 【Personal summary】Key points of MES system development/management
- 【C语言】斐波那契数列
- 数组与字符串9-翻转字符串里的单词
猜你喜欢
随机推荐
gotests自动生成测试用例
C#通过WebBrowser对网页截图
Redis的应用详解
contos安装php-ffmpeg和tp5.1使用插件
快速理解JVM+GC
Oracle 数据库集群常用巡检命令
什么是国密SSL协议?国密证书与传统SSL证书有什么区别?
树——二叉排序树(BST)
AQS、CAS、Synchronized小理解
2021-06-20
Oracle 11g silent install
【面筋1】一些没什么标准答案的问题
3D建模:做什么副业在家就能月入1W?
JS--正则表达式
在Maya和ZBrush中制作战士模型
Migration of BOA Server
二分查找4 - 搜索旋转排序数组
JUC并发编程深入浅出!
DNS常见资源记录类型详解
9. Please introduce the class loading process, what is the parent delegation model?