通过 ssh 使用 nice 时无法识别选项

通过 ssh 使用 nice 时无法识别选项

如何nice通过 在远程主机上使用ssh

我想降低在远程主机上执行的长交互过程的优先级:

ssh server1 nice -n tar --update --preserve-permissions --file /opt/share/content/mirror/.tar --directory /opt/share/content/version/0 .

错误信息:

很好:无法识别的选项‘--update’

尝试“nice --help”获取更多信息。

与服务器 1 的连接已关闭。

ssh -t、参数的简短版本以及任何引号组合sshnice参数都不会发生任何变化。

ssh server1 'echo $SHELL'打印/bin/bash,如果很重要的话。

答案1

nice -n需要一个数字,你有tar。我认为这会让解析器感到困惑。

尝试:

ssh server1 nice -n 10 tar --update ...

或者

ssh server1 nice tar --update ...

相关内容