使用ssh命令出现:packet_write_wait: Connection to **** port 22: Broken pipe 解决!
在github找到了完美的解决方案!感谢~
https://github.com/vmware/open-vm-tools/issues/287
解决方案:在~/.ssh目录新建文件config
在github找到了完美的解决方案!感谢~
https://github.com/vmware/open-vm-tools/issues/287
解决方案:在~/.ssh目录新建文件config
vi ~/.ssh/config
#Added lines to fix.
Host *
IPQoS lowdelay throughput
#end of new file edit
到这里如果不更改权限会出现一个问题
Bad owner or permissions on /home/xin/.ssh/config
解决办法也很简单
chmod 644 ~/.ssh/config
到这里,这个问题已经完美解决了。
到这里如果不更改权限会出现一个问题
Bad owner or permissions on /home/xin/.ssh/config
解决办法也很简单
chmod 644 ~/.ssh/config
到这里,这个问题已经完美解决了。