Questions tagged «nohup»

4
通过SSH运行nohup命令,然后断开连接
我想start.sh在运行此脚本的远程服务器上执行脚本: nohup node server.js & 天真的,我这样称呼SSH: ssh myserver <<EOF ./start.sh & EOF 这将启动脚本,但保持会话连接。我想跟脚本中的其他命令一起执行此步骤,所以这不好。 如何通过SSH到远程计算机,nohup在后台启动命令,然后断开连接?我想我可以将SSH进程本身放在后台,但这似乎不正确。

2
“ <command>&disown”和“ nohup <command>&disown”之间的区别
这是我讲的用法的理解&amp;,disown以及nohup: &lt;command&gt;:在终端的当前bash实例中,在前台运行该进程(即,该进程被列为bash前台作业stdin,stdout并且stderr仍然绑定到终端);无法摆脱挂断 ; &lt;command&gt; &amp;:在终端的当前bash实例中在后台运行该进程(即该进程被列为bash后台作业和stdin,stdout并且stderr仍绑定到终端);无法摆脱挂断 ; &lt;command&gt; &amp; disown:在后台在终端的当前bash实例中运行进程,但是该进程与“作业”列表分离(即,该进程未列为前台/后台作业,并且仍绑定到终端);不受挂断的影响 ;bashbashstdinstdoutstderr nohup &lt;command&gt; &amp; disown:运行终端当前的内部流程bash实例,在后台,但过程是从分离bash的职位名单(即过程没有列为bash前台/后台作业和stdin,stdout和stderr是不是仍然绑定到终端) ; 不受挂断的影响 ; 因此,除了nohup &lt;command&gt; &amp; disown阻止stdin和重定向stdout并stderr以nohup.out默认状态下,它似乎对我来说,它可以被认为完全等同&lt;command&gt; &amp; disown。 以上是正确的吗?有误解吗?

2
nohup命令的功能是什么?
我是Ubuntu的新手。我学会了一个命令 nohup [command]- &lt;command&gt;对挂断信号免疫 我无法理解“ 免于挂断信号 ” 的含义。它正在谈论什么类型的信号?并且请通过示例告诉我如何使用此命令。

1
如何防止nohup创建〜/ nohup.out文件?
我使用命令$ nohup ...在后台启动应用程序,以便以后可以关闭终端窗口。 执行后,它将创建文件~/nohup.out。 例: orschiro@x230:~$ nohup /bin/bash -c "sleep 15 &amp;&amp; python3 /home/orschiro/bin/show_state.py" nohup: ignoring input and appending output to 'nohup.out' 如何防止nohup创建nohup.out?


4
保持程序在终端中运行
因此,我很清楚nohup命令并带有后缀&amp;以确保它们进入后台。 但是,如果我运行图形应用程序-有时似乎都不使用它。那么,我可以在程序/命令前添加前缀以确保程序/命令在终端关闭后继续运行吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.