m***o 发帖数: 7 | 1 我在manual上看的
nohup的使用方法是
nohup &
可是奇怪的是,我在我的linux上用这个方法没问题,输出自动被存成了nohup文件
但是在系里的unix系统上好象总是不对,程序执行的结果还是显示在屏幕上
我用nohup > output &倒是可以达到目的,但是我想知道unix里难道不
是按照上面那样用的吗?
还有一个问题,我发现在系里的机器上,用 &,也可以退出而程序仍然在
执行,这样的话,要这个nohup有什么用呢? |
|
w******r 发帖数: 201 | 2 【 以下文字转载自 Linux 讨论区 】
发信人: warrener (淮水东边旧时月), 信区: Linux
标 题: 高人帮我看看一个简单的script,为什么nohup有问题?
发信站: BBS 未名空间站 (Tue May 26 21:17:10 2009)
我用一个script A 调用 script B
Script A:
#do nothing but call B
ssh another-machine "/user/tom/b.sh"
Script B:
# do some fancy things, takes about 1 hour to finish
...
我用命令:
nohup a.sh &>/tmp/log &
A was "stopped" after 5 minutes but B was running and B finished correctly.
这是什么原因?我记得stopped是因为stdin/stderr? 这里好像没有问题啊?
而且我也没有ctrl-z。 |
|
C******n 发帖数: 284 | 3 小女子在unix上用nohup命令,在batch mode下运行一个程序,但是不知在运行程序后
,如何查看该程序的进程?如何kill这个进程?
恳请高手赐教! |
|
E*V 发帖数: 17544 | 4 suggestion: use "screen" not nohup.
if you realy want to check
ps -A | grep your_username
or ps -u your username |
|
w******r 发帖数: 201 | 5 我用一个script A 调用 script B
Script A:
#do nothing but call B
ssh another-machine "/user/tom/b.sh"
Script B:
# do some fancy things, takes about 1 hour to finish
...
我用命令:
nohup a.sh &>/tmp/log &
A was "stopped" after 5 minutes but B was running and B finished correctly.
这是什么原因?我记得stopped是因为stdin/stderr? 这里好像没有问题啊?
而且我也没有ctrl-z。 |
|
|
E*V 发帖数: 17544 | 7 ☆─────────────────────────────────────☆
miniplayer (mplayer) 于 (Wed Jul 22 00:37:40 2009, 美东) 提到:
从我的笔记本ssh 到 cluster, submit了一个command. 这个命令得运行超过12个小时。
请问我现在可以关机睡觉么?还是必须一直开机?否则命令就不执行了?
☆─────────────────────────────────────☆
zhanglaosan (张老三) 于 (Wed Jul 22 00:39:19 2009, 美东) 提到:
nohup貌似不行,你机器还得开着
用screen吧
时。
☆─────────────────────────────────────☆
netghost (Up to Isomorphism) 于 (Wed Jul 22 00:40:14 2009, 美东) 提到:
没有往终端输出应该没什么问题。
时。
☆─────────────────────────────────────☆
zhang |
|
f*c 发帖数: 7 | 8 I have a program needed to run for about 2 hours. I remember that using "
nohup program.out &" can make the program keep running even when I log off
the system.
( program.out is my program)
But just now when I tried this, I found it didn't work,
does anyone know how to solve this problem?
Thanks a lot! |
|
m*****e 发帖数: 4193 | 9 You think nohup is such a stupid program? |
|
f*c 发帖数: 7 | 10 thanks !
It works actually,
and just use that command is ok, needn't do anything else, nohup can do it for
me. |
|
p*********b 发帖数: 5 | 11 架设我在公共机房 log off 之前用了 nohup 去 run program, log off 后是不是继续运
行,哪怕机器被人reboot了? |
|
T********r 发帖数: 6210 | 12 after reboot, your program will not run any more unless it is started
by cron/atd. nohup just ensure your program running after log off. |
|
m*****e 发帖数: 4193 | 13
Different systems may have different man pages.
If you logout, all processes attached to your login session get SIGHUP, which
by default kills them. Some processes handle this signal explicitly so they
can keep running (that's what nohup does). |
|
C******n 发帖数: 284 | 14 小女子在unix用nohup命令,在batch mode下运行一个程序,但是不知在运行程序后,
如何查看该程序的进程?如何kill这个进程?
恳请高手赐教! |
|
z*****g 发帖数: 810 | 15 查看该程序的进程
tail -f nohup.out |
|
k****e 发帖数: 621 | 16 jobs to list background process
or
ps -fu `whoami` | grep to find the PID
or
less nohup.out to check if anything is wrong... |
|
m********r 发帖数: 811 | 17 【 以下文字转载自 Linux 讨论区 】
发信人: miniplayer (mplayer), 信区: Linux
标 题: 请问用了nohup以后我这边可以关机吗?
发信站: BBS 未名空间站 (Wed Jul 22 00:37:40 2009, 美东)
从我的笔记本ssh 到 cluster, submit了一个command. 这个命令得运行超过12个小时。
请问我现在可以关机睡觉么?还是必须一直开机?否则命令就不执行了? |
|
T*********r 发帖数: 11175 | 18 你这面可以关机
nohup ./xxx &
不过你得确定你放到背景了
时。 |
|
m********r 发帖数: 811 | 19 我的命令
nohup a.sh > a.log &
放到背景了。 |
|
d*b 发帖数: 21830 | 20 nohup a.sh >& a.log &
或者
./a.sh
ctrl-z
bg
这种事问我,我老绝对大牛 |
|
d****d 发帖数: 2919 | 21 推荐第二种,快关机的时候再bg。
因为在nohup里跑的程序,nice priority自动降低5点。
要比直接跑的慢些。
如果有权限,也可以放到bg里以后,再renice一下那个程序。
那样就没什么分别了。 |
|
h*w 发帖数: 1182 | 22 抛砖引玉,pogoplug上面可以装很多东西。
本人新手,这个安装说明算是一个备份吧,如果要重新安装可以看看,也可以给新新手
参考。也请高手指点。
为什么没有装arch或者debian是因为看到有人说pogoplug自带的ntfs驱动比ntfs-3g性
能好,就想用原系统加装optware来安装samba共享。而且如果还想用my.pogoplug.com
也可以直接用。还没有实验过到底是自带的ntfs驱动快还是ntfs-3g快,就当瞎折腾了
,呵呵。
本说明基于POGO-E02,不保证在其他版本的pogoplug上也工作。对于使用本安装说明引
起的任何损失概不负责。
------------------------------
1. Find your Pogoplug ip address in your router.
2. Log into your Pogoplug online account that you created during the initial
setup of the POGO. Go into the advanced tab / Security.... 阅读全帖 |
|
h*w 发帖数: 1182 | 23 抛砖引玉,pogoplug上面可以装很多东西。
本人新手,这个安装说明算是一个备份吧,如果要重新安装可以看看,也可以给新新手
参考。也请高手指点。
为什么没有装arch或者debian是因为看到有人说pogoplug自带的ntfs驱动比ntfs-3g性
能好,就想用原系统加装optware来安装samba共享。而且如果还想用my.pogoplug.com
也可以直接用。还没有实验过到底是自带的ntfs驱动快还是ntfs-3g快,就当瞎折腾了
,呵呵。这个主要是给家里只有windowns电脑的用,要是有linux的机器,还是用ext3或
ext4最快。
本说明基于POGO-E02,不保证在其他版本的pogoplug上也工作。对于使用本安装说明引
起的任何损失概不负责。
------------------------------
1. Find your Pogoplug ip address in your router.
2. Log into your Pogoplug online account that you created during the initial
setup... 阅读全帖 |
|
v*****r 发帖数: 1119 | 24 jobs/fg/bg command are tied with your terminal session, once you logout, you
will not be able to manipulate nohup process in new login sessions. You can
find the running nohup process using "ps -ef | grep " to find the
process id, name; and then you can send signals to the running nohup process
, for example kill the process. |
|
发帖数: 1 | 25 【 以下文字转载自 Biology 讨论区 】
发信人: nohup (nohup), 信区: Biology
标 题: 钱永健去世
发信站: BBS 未名空间站 (Wed Aug 31 15:40:09 2016, 美东)
http://www.sandiegouniontribune.com/news/2016/aug/31/roger-tsien-dies/
UC San Diego researcher Roger Tsien, who shared the 2008 Nobel Prize in
chemistry for helping find a more effective way to see potentially deadly
cells, died on Aug. 24th. He was 64.
Tsien died in Eugene, Oregon, according to UC San Diego Chancellor Pradeep
Khosla, who broke the news to the campus community on Wed... 阅读全帖 |
|
L*********g 发帖数: 3001 | 26 【 以下文字转载自 Biology 讨论区 】
发信人: nohup (nohup), 信区: Biology
标 题: 河北新闻网:“科研英雄”背后社会舆论的悲哀
发信站: BBS 未名空间站 (Wed Oct 12 10:42:53 2016, 美东)
河北官媒时事评论文章
http://comment.hebnews.cn/2016-10/11/content_5961729.htm
10月10日晚,12位学者站了出来,决定实名公开他们“重复”韩春雨实验方法的结果:
“阴性的”、“不工作”等等。这样结论的通俗表达即是,他们没能“重复”出韩春雨
的实验,其实验方法“让人怀疑”。(中青在线10月11日)
从论文发表的一鸣惊人到如今面对的无尽质疑,从青年科技领军人物到声讨笔伐的
学术造假者,这其中只有一步距离,一边是猜测,一边是真相,跨过这一步,可能是天
堂,也可能是地狱,但如果支持韩春雨跨过“这道坎”的勇气都没有,如何配得上拥有
“科研英雄”?
十二位学者出来质疑韩春雨教授的科研成果,从科学态度来说是可以理解,但是从
国家科学的长远发展来看,却是过于心急。一个伟大的... 阅读全帖 |
|
d********f 发帖数: 43471 | 27 【 以下文字转载自 Biology 讨论区 】
发信人: nohup (nohup), 信区: Biology
标 题: 河北新闻网:“科研英雄”背后社会舆论的悲哀
发信站: BBS 未名空间站 (Wed Oct 12 10:42:53 2016, 美东)
河北官媒时事评论文章
http://comment.hebnews.cn/2016-10/11/content_5961729.htm
10月10日晚,12位学者站了出来,决定实名公开他们“重复”韩春雨实验方法的结果:
“阴性的”、“不工作”等等。这样结论的通俗表达即是,他们没能“重复”出韩春雨
的实验,其实验方法“让人怀疑”。(中青在线10月11日)
从论文发表的一鸣惊人到如今面对的无尽质疑,从青年科技领军人物到声讨笔伐的
学术造假者,这其中只有一步距离,一边是猜测,一边是真相,跨过这一步,可能是天
堂,也可能是地狱,但如果支持韩春雨跨过“这道坎”的勇气都没有,如何配得上拥有
“科研英雄”?
十二位学者出来质疑韩春雨教授的科研成果,从科学态度来说是可以理解,但是从
国家科学的长远发展来看,却是过于心急。一个伟大的... 阅读全帖 |
|
z**********3 发帖数: 11979 | 28 【 以下文字转载自 Military 讨论区 】
发信人: nohup (nohup), 信区: Military
标 题: 黄奇帆:把金融搞得很复杂的那些人都是骗子 ZT
发信站: BBS 未名空间站 (Mon Feb 15 02:22:53 2016, 美东)
在2月11日举行的重庆市金融工作会上,重庆市长黄奇帆对金融机构及区县负责人讲话
实录稿:
刚刚过去的2014年,重庆经济有六七个主要指标都处在全国前列。比如GDP增长率
,工业增加值增长率,工业利润增长率,进出口增长率,商业零售增长率;还包括一些
专业领域的指标,比如机场旅客吞吐量的增长率,汽车生产量的增长率,笔记本电脑的
增长率,等等。这些重要指标,支撑了重庆经济持续健康稳定向好的发展,符合国家提
出的追求效益、追求质量、调优结构的要求。
取得这样的成绩,金融战线功不可没,实属难能可贵,值得倍加珍惜。去年,重庆
金融工作成效显着,新增了5600多亿的社会融资,占到全国15万亿新增融资额的1/30。
作为经济总量占全国的1/40、人口也占全国1/40的重庆,金融资金的供应能力达到1/30
,对重庆经济强劲发展是一个很重要的... 阅读全帖 |
|
n****4 发帖数: 12553 | 29 【 以下文字转载自 Biology 讨论区 】
发信人: nohup (nohup), 信区: Biology
标 题: 河北新闻网:“科研英雄”背后社会舆论的悲哀
发信站: BBS 未名空间站 (Wed Oct 12 10:42:53 2016, 美东)
河北官媒时事评论文章
http://comment.hebnews.cn/2016-10/11/content_5961729.htm
10月10日晚,12位学者站了出来,决定实名公开他们“重复”韩春雨实验方法的结果:
“阴性的”、“不工作”等等。这样结论的通俗表达即是,他们没能“重复”出韩春雨
的实验,其实验方法“让人怀疑”。(中青在线10月11日)
从论文发表的一鸣惊人到如今面对的无尽质疑,从青年科技领军人物到声讨笔伐的
学术造假者,这其中只有一步距离,一边是猜测,一边是真相,跨过这一步,可能是天
堂,也可能是地狱,但如果支持韩春雨跨过“这道坎”的勇气都没有,如何配得上拥有
“科研英雄”?
十二位学者出来质疑韩春雨教授的科研成果,从科学态度来说是可以理解,但是从
国家科学的长远发展来看,却是过于心急。一个伟大的... 阅读全帖 |
|
x***n 发帖数: 291 | 30 Try the command of "nohup"
e.g. nohup java Server & |
|
l******l 发帖数: 233 | 31 是在bash shell上运行。
参照网上的一些说法在mpirun前加了nohup,但当我关掉窗口的时候程序还是会断掉并
在nohup.out文件里输出以下信息
mpiexec_*.umd.edu: mpd_uncaught_except_tb handling:
exceptions.IOError: [Errno 9] Bad file descriptor
/usr/local/bin/mpirun 1065 handle_stdin_input
sys.stdin.flush() # probably does nothing
/usr/local/bin/mpdlib.py 762 handle_active_streams
handler(stream,*args)
/usr/local/bin/mpirun 515 mpiexec
rv = streamHandler.handle_active_streams(timeout=1.0)
/usr/local/bin/mpir |
|
c**********e 发帖数: 2007 | 32 I am using SSH Tectia - Terminal to connect to a unix server. I try to run a
process on background. I tried the following 3 commands:
1. sas a.sas &
2. nohup sas a.sas &
3. nohup sas -noterminal a.sas &
"sas a.sas" is to use sas software to run a.sas (file name). If you do not
know SAS, just take "sas a.sas" as something like a.exe.
For any of the 3 commands, whenever I close the SSH Terminal window, my
process is killed. |
|
w******g 发帖数: 82 | 33 【 以下文字转载自 Linux 讨论区 】
发信人: wenxiang ( ), 信区: Linux
标 题: 求助:script for commands
发信站: BBS 未名空间站 (Tue Jul 10 09:28:07 2007)
最近在run一个ns2 based的simulation.我写了一个外挂的matlab程序产生scenario和
分析数据.所输入命令大概是这样的
nohup matlab /dev/null
ns file.tcl
awk -f handle_trace.awk output_trace.tr > extracted_trace.txt
nohup matlab /dev/null
为了完成和分析一次simulation,我需要依次输入上面几个命令。我现在想一次run上
100次simulation。请问有没有办法写个script什么的,让unix/linux系统顺次运行这
些命令100遍。如果可以,大概是什么样的?谢谢! |
|
q***e 发帖数: 90 | 34 hehe, never worry about it.
The system will send you an email about
its output. Also a file named nohup.out
will be generated. I am not sure of the
exact file name. But you will find it.
Just run your nohup command without any
redirection. |
|
d*******2 发帖数: 340 | 35 请问是不是直接运行(用nohup ./file &)会影响并行机的速度而被IT负责人强行中止?
而用qsub不会影响并行机的速度?
我用nohup ./file &每天晚上就停止运行了。
先谢了! |
|
l******l 发帖数: 233 | 36 【 以下文字转载自 Linux 讨论区 】
发信人: lsloneil (Eric), 信区: Linux
标 题: 请问mpirun怎么放在后台运行?
发信站: BBS 未名空间站 (Mon Dec 7 11:39:45 2009, 美东)
是在bash shell上运行。
参照网上的一些说法在mpirun前加了nohup,但当我关掉窗口的时候程序还是会断掉并
在nohup.out文件里输出以下信息
mpiexec_*.umd.edu: mpd_uncaught_except_tb handling:
exceptions.IOError: [Errno 9] Bad file descriptor
/usr/local/bin/mpirun 1065 handle_stdin_input
sys.stdin.flush() # probably does nothing
/usr/local/bin/mpdlib.py 762 handle_active_streams
handler(stream,*args)
|
|
c********s 发帖数: 483 | 37 Use ultraedit or texpad or eg as your unix sas editor(need set up, some code
you may download from internet).
You can run Unit SAS directly from your editor or run under unix.
cut point is easy, you may use endsas and output dataset. log is also there.
be careful when you use interactive sas, the language is different from Unix
sometimes, such like "/" and "" on path.
alias is very helpful. ex: as below:
__A=
__B=
autoload='typeset -fu'
command='command '
study1=' '
study2='cd/'
functions='types... 阅读全帖 |
|
c********s 发帖数: 483 | 38 Use ultraedit or texpad or eg as your unix sas editor(need set up, some code
you may download from internet).
You can run Unit SAS directly from your editor or run under unix.
cut point is easy, you may use endsas and output dataset. log is also there.
be careful when you use interactive sas, the language is different from Unix
sometimes, such like "/" and "" on path.
alias is very helpful. ex: as below:
__A=
__B=
autoload='typeset -fu'
command='command '
study1=' '
study2='cd/'
functions='types... 阅读全帖 |
|
c********s 发帖数: 483 | 39 Use ultraedit or texpad or eg as your unix sas editor(need set up, some code
you may download from internet).
You can run Unit SAS directly from your editor or run under unix.
cut point is easy, you may use endsas and output dataset. log is also there.
be careful when you use interactive sas, the language is different from Unix
sometimes, such like "/" and "" on path.
alias is very helpful. ex: as below:
__A=
__B=
autoload='typeset -fu'
command='command '
study1=' '
study2='cd/'
functions='types... 阅读全帖 |
|
c********s 发帖数: 483 | 40 Use ultraedit or texpad or eg as your unix sas editor(need set up, some code
you may download from internet).
You can run Unit SAS directly from your editor or run under unix.
cut point is easy, you may use endsas and output dataset. log is also there.
be careful when you use interactive sas, the language is different from Unix
sometimes, such like "/" and "" on path.
alias is very helpful. ex: as below:
__A=
__B=
autoload='typeset -fu'
command='command '
study1=' '
study2='cd/'
functions='types... 阅读全帖 |
|
|
m***q 发帖数: 96 | 42 据说今年H1B会有20万人申请,名额还是8万多。我就想,为什么H1B可以把拥有
advanced学历的人牢牢限制住?那1100万估计连本科学历都没有,但依然可以靠自己的
辛勤劳作在这里站住脚跟。。。
有时候真的很想豁出去了,凭什么比你晚来两三百年,找个工作都要排队抽签看脸色。
凭什么起早贪黑辛勤工作的我随时可能被你贴上一个“非法移民”的标签,而你却可以
继续合法的好吃懒做不劳而获?
没有读过美国宪法,但凭感觉我相信制定宪法的美国先先们如果看到今年的美国,他们
也许会加上一条“这片土地上的任何有都有追逐自己的梦想的自由,只要他不侵犯别人
追逐梦想的权利”
我就想问一下,如果真的被他们贴上了非法移民的标签,advanced STEM degree加上2
年big data工作经验,湾区Startup会在意我是非法的吗?
背景:
Python熟练级别(2年工作经验): 1)把Hive SQL写进.py然后在Linux下自动化很多
进程;2)在Hive SQL中调用.py进行streaming; 3)直接用写.py格式的mapper和
reducer; 4)借助NLTK moduler做一些c... 阅读全帖 |
|
l****z 发帖数: 29846 | 43 【 以下文字转载自 JobHunting 讨论区 】
发信人: muqqq (muqq), 信区: JobHunting
标 题: 2014H1B浮想联翩:高技术非法劳工市场怎么样?
发信站: BBS 未名空间站 (Sun Feb 9 22:16:13 2014, 美东)
据说今年H1B会有20万人申请,名额还是8万多。我就想,为什么H1B可以把拥有
advanced学历的人牢牢限制住?那1100万估计连本科学历都没有,但依然可以靠自己的
辛勤劳作在这里站住脚跟。。。
有时候真的很想豁出去了,凭什么比你晚来两三百年,找个工作都要排队抽签看脸色。
凭什么起早贪黑辛勤工作的我随时可能被你贴上一个“非法移民”的标签,而你却可以
继续合法的好吃懒做不劳而获?
没有读过美国宪法,但凭感觉我相信制定宪法的美国先先们如果看到今年的美国,他们
也许会加上一条“这片土地上的任何有都有追逐自己的梦想的自由,只要他不侵犯别人
追逐梦想的权利”
我就想问一下,如果真的被他们贴上了非法移民的标签,advanced STEM degree加上2
年big data工作经验,湾区Startup会在意我是非法的吗... 阅读全帖 |
|
g*w 发帖数: 289 | 44 【 以下文字转载自 JobHunting 讨论区 】
发信人: muqqq (muqq), 信区: JobHunting
标 题: 2014H1B浮想联翩:高技术非法劳工市场怎么样?
发信站: BBS 未名空间站 (Sun Feb 9 22:16:13 2014, 美东)
据说今年H1B会有20万人申请,名额还是8万多。我就想,为什么H1B可以把拥有
advanced学历的人牢牢限制住?那1100万估计连本科学历都没有,但依然可以靠自己的
辛勤劳作在这里站住脚跟。。。
有时候真的很想豁出去了,凭什么比你晚来两三百年,找个工作都要排队抽签看脸色。
凭什么起早贪黑辛勤工作的我随时可能被你贴上一个“非法移民”的标签,而你却可以
继续合法的好吃懒做不劳而获?
没有读过美国宪法,但凭感觉我相信制定宪法的美国先先们如果看到今年的美国,他们
也许会加上一条“这片土地上的任何有都有追逐自己的梦想的自由,只要他不侵犯别人
追逐梦想的权利”
我就想问一下,如果真的被他们贴上了非法移民的标签,advanced STEM degree加上2
年big data工作经验,湾区Startup会在意我是非法的吗... 阅读全帖 |
|
r*********n 发帖数: 1166 | 45 生活啊, 北大文科生也堕落到研究 nohup 了, 赫赫. |
|
g*****g 发帖数: 34805 | 46 use nohup before your command if you want it to run in the background.
And even if you don't use it sometimes it runs in background.
I think it depends on the shell. |
|
g*****g 发帖数: 34805 | 47 我也只会less, grep这几个。chmod这些偶尔用用。什么tee我都没听说过。还有那个应
该是nohup吧。 |
|
w**z 发帖数: 8232 | 48 俺们不提倡用nohup, 让用screen . 这些operation 用的多,se 真不一定知道。问一
下,sed, awk 就更没人知道了。 |
|
u****s 发帖数: 2186 | 49 我感觉Linux比以前用的更广泛了。
我们的server是在Amazon EC2上的Linux, 所以才问一些Unix commands。
是nohup,敲错了。
tee 还算是挺常用的。测试的时候经常tail -f logfile | tee test.log
产生一个只和这次测试有关的log文件。
strings不常用,只是因为当天用了一次,所以想问的。
sed,awk现在很少有人用了。
如果简历上不写用过Unix/Linux,我是不会问的。 |
|
E*V 发帖数: 17544 | 50 btw, please upload your photo to let me know you are a mm |
|