我已经成功地在服务器端和客户端安装了mosh。我试图在osx中使用mosh进行ssh,但它抛出了以下错误:
/bin/false: No such file or directory
write: Broken pipe
/usr/local/bin/mosh: Did not find remote IP address (is SSH ProxyCommand disabled?).我不确定它是否与mosh有关,或者是一般的错误。请帮我设置mosh。
发布于 2016-06-20 17:27:48
此错误
/bin/false: No such file or directory很可能意味着您尝试登录的用户帐户已被禁用。您需要以其他用户身份登录,并将shell更改为有效的可执行文件
$ chsh -s /bin/bash [username]https://stackoverflow.com/questions/37414047
复制相似问题