nohup: ignoring input什么原因
时间: 2024-02-26 10:38:16 浏览: 103
导致的?
这个问题通常是因为使用了 nohup 命令,并且输入了一些内容,导致 nohup 报出警告信息,其中的 ignoring input 表示 nohup 忽略了输入。要解决这个问题,可以在使用 nohup 命令时,将输入重定向到 /dev/null,例如:nohup command > /dev/null 2>&1 &。这样就不会有警告信息产生了。
相关问题
nohup: ignoring input
nohup: ignoring input是nohup命令的一种提示信息,意味着该命令忽略了输入。
当在Linux中使用nohup命令时,如果不指定输入,nohup命令会自动忽略输入,并将输出记录到nohup.out文件中。
在默认情况下,nohup命令会在当前目录下生成一个名为nohup.out的文件来存储输出信息。如果当前目录的nohup.out文件不可写,则输出会被重定向到$HOME/nohup.out文件中。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [nohup: ignoring input and appending output to ‘nohup.out](https://blog.csdn.net/qq_51066068/article/details/124542326)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [nohup 命令之 nohup: ignoring input and appending output to ‘nohup.out’](https://blog.csdn.net/qq_45956730/article/details/124712224)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
nohup : ignoring input
`nohup`是一个Unix/Linux命令,全称是"No Hang Up", 它的作用是在用户登录会话结束后继续运行程序,使得程序不受键盘中断信号(如Ctrl+C)的影响。当使用`nohup`命令启动一个进程时,它会忽略标准输入(`stdin`),这意味着即使你通过键盘向该进程发送信号,它也不会终止,除非有明确的退出命令或错误发生。
当你在命令前添加`nohup`,其基本语法通常是这样的:
```
nohup command [options] &> nohup.out
```
这里,`command`是你想要在后台持续运行的程序,`&>`表示输出会被重定向到`nohup.out`文件,而不是直接打印到终端。如果你只想忽略标准输入而不记录输出,可以只使用`nohup command &`。
阅读全文