通过单个命令通过 ssh 运行 htop

通过单个命令通过 ssh 运行 htop

我想通过 ssh 运行 htop - 但使用 shell 脚本在无键盘系统上自动启动它。我的第一个想法是

ssh [email protected] 'htop'

但:

Error opening terminal: unknown.

有没有办法启动 htop remote 而不需要每次连接都输入命令?

提前致谢!

答案1

在 SSH 中使用-t标志:

ssh [email protected] -t 'htop'

这将强制分配 TTY(如果没有必要,ssh 不会分配 TTY,通常仅适用于交互式 shell)。

相关内容