博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
9.10 nohup:用户退出系统进程继续工作
阅读量:5330 次
发布时间:2019-06-14

本文共 2277 字,大约阅读时间需要 7 分钟。

nohup命令

  可以将程序以忽略挂起信号的方式运行起来,被运行程序的输出信息将不会显示到终端。
       无论是否将nohup命令的输出重定向到终端,输出都将写入到当前目录的nohup.out文件中。如果当前目录的nohup.out文件不可写,则输出重定向到$HOME/nohup.out文件中。

让执行的命令在当前会话终止后继续保持运行

    正常情况下,如果用户退出登录或会话终止,则用户正在执行并可持续一段时间的命令(非守护进程)将自动终止。使用nohup命令可以实现在用户退出或当前会话终止后继续保持运行,具体的例子如下:
[root@cs6 ~]# nohup ping g.cnnohup: 忽略输入并把输出追加到"nohup.out"#<==当前终端已经hang住,此时强制关闭当前终端(例如关闭该标签或者Ss日客户端工具),这个ping命令依然会在后台运行。# 但是Ctrl + C 会退出命令执行 [root@cs6 ~]# ps -ef|grep pingroot       1818      1  0 19:19 ?        00:00:00 ping g.cnroot       1820   1797  0 19:19 pts/1    00:00:00 grep ping [root@cs6 ~]# tail -f nohup.out64 bytes from 203.208.40.79: icmp_seq=97 ttl=128 time=42.2 ms64 bytes from 203.208.40.79: icmp_seq=98 ttl=128 time=42.7 ms64 bytes from 203.208.40.79: icmp_seq=99 ttl=128 time=42.7 ms64 bytes from 203.208.40.79: icmp_seq=100 ttl=128 time=42.7 ms64 bytes from 203.208.40.79: icmp_seq=101 ttl=128 time=42.6 ms64 bytes from 203.208.40.79: icmp_seq=102 ttl=128 time=42.4 ms64 bytes from 203.208.40.79: icmp_seq=103 ttl=128 time=43.0 ms64 bytes from 203.208.40.79: icmp_seq=104 ttl=128 time=50.7 ms64 bytes from 203.208.40.79: icmp_seq=105 ttl=128 time=42.9 ms64 bytes from 203.208.40.79: icmp_seq=106 ttl=128 time=43.0 ms
 
在工作中我们一般会配合&符运行nohup命令,让程序直接在后台运行:
 
[root@cs6 ~]# nohup ping g.cn &[1] 1855[root@cs6 ~]# nohup: 忽略输入并把输出追加到"nohup.out" [root@cs6 ~]# tail -f nohup.out64 bytes from 203.208.40.95: icmp_seq=8 ttl=128 time=42.1 ms64 bytes from 203.208.40.95: icmp_seq=9 ttl=128 time=43.3 ms64 bytes from 203.208.40.95: icmp_seq=10 ttl=128 time=44.1 ms64 bytes from 203.208.40.95: icmp_seq=11 ttl=128 time=42.5 ms64 bytes from 203.208.40.95: icmp_seq=12 ttl=128 time=42.9 ms64 bytes from 203.208.40.95: icmp_seq=13 ttl=128 time=42.6 ms64 bytes from 203.208.40.95: icmp_seq=14 ttl=128 time=42.8 ms64 bytes from 203.208.40.95: icmp_seq=15 ttl=128 time=42.8 ms64 bytes from 203.208.40.95: icmp_seq=16 ttl=128 time=134 ms64 bytes from 203.208.40.95: icmp_seq=17 ttl=128 time=42.8 ms64 bytes from 203.208.40.95: icmp_seq=18 ttl=128 time=42.2 ms64 bytes from 203.208.40.95: icmp_seq=19 ttl=128 time=43.2 ms64 bytes from 203.208.40.95: icmp_seq=20 ttl=128 time=43.7 ms64 bytes from 203.208.40.95: icmp_seq=21 ttl=128 time=42.0 ms

 

类似功能的命令还有screen和直接使用&符。

转载于:https://www.cnblogs.com/fadewalk/p/10846978.html

你可能感兴趣的文章
字符串类型的相互转换
查看>>
基础学习:C#中float的取值范围和精度
查看>>
web前端面试题2017
查看>>
【Crash Course Psychology】2. Research & Experimentation笔记
查看>>
关于 linux 的 limit 的设置
查看>>
MTK笔记
查看>>
ERROR: duplicate key value violates unique constraint "xxx"
查看>>
激活office 365 的启动文件
查看>>
无法根据中文查找
查看>>
[简讯]phpMyAdmin项目已迁移至GitHub
查看>>
转载 python多重继承C3算法
查看>>
【题解】 bzoj1597: [Usaco2008 Mar]土地购买 (动态规划+斜率优化)
查看>>
css文本溢出显示省略号
查看>>
git安装和简单配置
查看>>
面向对象:反射,双下方法
查看>>
鼠标悬停提示文本消息最简单的做法
查看>>
fat32转ntfs ,Win7系统提示对于目标文件系统文件过大解决教程
查看>>
Awesome Adb——一份超全超详细的 ADB 用法大全
查看>>
shell cat 合并文件,合并数据库sql文件
查看>>
Android 将drawable下的图片转换成bitmap、Drawable
查看>>