Server refused to allocate pty

今天远程ssh登录我的vps的时候,出现 Server refused to allocate pty      错误

Google了很多文章,最终解决,办法如下:

mknod -m 666 /dev/ptmx c 5 2
#chmod 666 /dev/ptmx
mkdir /dev/pts     
       
#编辑/etc/fstab,加入:
     none            /dev/pts        devpts        gid=5,mode=620    0 0

mount /dev/pts

 

这个错误来源于我安装gnome后,编译内核后,pts没有加载

你可能感兴趣的:(C++,c,ssh,Google,C#)