nohup: appending output to ‘nohup.out’ nohup: ignoring input and appending output to ‘nohup.out’
时间: 2023-11-15 10:53:34 浏览: 318
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文件中并忽略输入。
相关问题
nohup: ignoring input and appending output to `nohup.out' nohup: failed to run command `./PLCXDZPrc': No such file or directory
这个错误提示是在使用 nohup 命令运行一个叫做 "PLCXDZPrc" 的程序时出现的。错误提示中的两行分别表示:
- "ignoring input and appending output to `nohup.out'":nohup 命令会忽略输入并将输出追加到名为 "nohup.out" 的文件中。
- "failed to run command `./PLCXDZPrc': No such file or directory":nohup 命令无法运行名为 "PLCXDZPrc" 的命令,因为找不到该文件或目录。
你需要检查一下该程序的路径是否正确,以及该程序是否存在。如果该程序存在,你可以尝试使用绝对路径或相对路径来运行它。例如,如果该程序在当前目录下,你可以使用以下命令来运行它:
```
nohup ./PLCXDZPrc &
```
注意,"&" 符号表示将该命令放入后台运行。
nohup: ignoring input and appending output to ‘nohup.out’ nohup: failed to run command ‘./frps’: No such file or directory
nohup是一个在Unix和类Unix系统上运行命令时使用的命令。它的作用是在命令执行过程中忽略输入,并将输出追加到指定的文件中。当你在使用nohup命令时,可能会遇到以下错误信息:"nohup: ignoring input and appending output to ‘nohup.out’"和"nohup: failed to run command ‘./frps’: No such file or directory"。
这个错误信息的意思是,nohup命令无法找到要执行的命令或文件。可能有以下几个原因导致这个错误:
1. 文件路径错误:请确保你输入的文件路径是正确的。"./frps"表示当前目录下的frps文件,如果该文件不存在或路径错误,就会出现"No such file or directory"的错误。
2. 权限问题:请确保你对要执行的命令或文件具有足够的权限。如果没有执行权限,也会导致类似的错误。
3. 文件不存在:如果要执行的命令或文件确实不存在,就会出现"No such file or directory"的错误。请检查文件是否存在,并确保路径正确。
如果你想使用nohup命令来运行一个命令或脚本,并将输出追加到指定文件中,可以按照以下格式使用nohup命令:
nohup 命令 > 输出文件路径 &
例如,要将命令"./frps"的输出追加到文件"output.txt"中,可以使用以下命令:
nohup ./frps > output.txt &
阅读全文