mosh:连接不好时的省心ssh替代工具

mosh可以解决如下坑问题:

  • 网络断断续续
  • 网络经常变动
  • IP出现变化
  • 经常进行休眠
  • ssh经常卡死
  • ssh返回缓慢
  • Ctrl+C缓慢无效

 
虽然有screen,但是断线重连是很痛苦的。而且经常一连就是30秒。。。
这时就需要mosh了。
 
除了Win,支持各种Linux和类Linux环境,包括安卓等。
安装不难:
服务器端:
Ubuntu:

$ sudo apt-get install python-software-properties
$ sudo add-apt-repository ppa:keithw/mosh
$ sudo apt-get update
$ sudo apt-get install mosh

OSX:
https://mosh.mit.edu/mosh-1.2.4-3.pkg
安装后需要设置locale。不设好会报错。
例如,连接某端口:
mosh --ssh="ssh -p 5120" root@yourname.com
 
官网:http://mosh.mit.edu/

2 thoughts on “mosh:连接不好时的省心ssh替代工具

Leave a Reply

Your email address will not be published. Required fields are marked *