通过单个命令在SSH上运行htop


16

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

ssh user@test.home 'htop'

但:

Error opening terminal: unknown.

有什么方法可以在不每次连接都输入命令的情况下启动htop remote?

提前致谢!

Answers:


20

-t标志与SSH一起使用:

ssh user@test.home -t 'htop'

这将强制进行TTY分配(如果不需要,ssh不会分配TTY,通常仅用于交互式shell)。


非常感谢,这就是我想要的!
wb7 2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.