nohup: appending output to 'nohup.out'
时间: 2023-02-27 09:25:01 浏览: 587
"nohup: 正在将输出附加到'nohup.out'"意思是你正在使用 Unix 的 nohup 命令,该命令在后台运行一个进程,并且将输出重定向到名为 nohup.out 的文件。这个消息告诉你该进程的输出已经被记录到 nohup.out 文件中。
相关问题
nohup:appending output to nohup.out
您好!对于您的问题,"nohup:appending output to nohup.out" 是一个常见的提示。这表示输出将被追加到名为 "nohup.out" 的文件中。当您在命令行中运行后台进程时,通常会使用nohup命令,并使用该提示来告知您输出的位置。
如果您希望停止将输出追加到 "nohup.out" 文件中,您可以使用以下命令来终止相关进程:
```
$ kill <进程ID>
```
请替换"<进程ID>"为要终止的进程的实际ID。您可以使用ps命令或pgrep命令来查找要终止的进程ID。
如果您还有其他问题,请随时提出。
nohup: appending output to ‘nohup.out’ nohup: ignoring input and appending output to ‘nohup.out’
nohup命令是在Linux中用于在后台执行命令,并将输出信息重定向到nohup.out文件中的命令。当你在终端中使用nohup命令时,会出现"nohup: ignoring input and appending output to ‘nohup.out’"的错误信息,表示命令会忽略输入并将输出信息添加到nohup.out文件中。此外,你还提到了另一个错误信息"nohup: ignoring input and redirecting stderr to stdout",这表示命令会忽略输入并将标准错误输出重定向到标准输出。
所以,当你在终端看到"nohup: appending output to ‘nohup.out’ nohup: ignoring input and appending output to ‘nohup.out’"的输出时,说明nohup命令执行成功,命令将输出信息追加到nohup.out文件中并忽略输入。
阅读全文