ssh登录error: PTY allocation request failed on channel 0

问题现象

# ssh [email protected] 
[email protected]'s password: 
PTY allocation request failed on channel 0
 

解决方案

unmount and mount /dev/pts

umount /dev/pts

mount devpts /dev/pts -t devpts

参考

https://stackoverflow.com/questions/27021641/how-to-fix-request-failed-on-channel-0

猜你喜欢

转载自blog.csdn.net/u013018618/article/details/106047895