2012年10月10日星期三

Server refused to allocate pty 错误解决

Server refused to allocate pty 错误解决

今天在启动虚拟机的时候,想从宿主机ssh到虚拟机,但是输入用户名与密码后,出现以下错误:

Server refused to allocate pty

在虚拟机中做如下操作可解决问题:

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

TAG: