I've created a Debian-based chroot environment using debootstrap under Arch Linux, and fill it with life like this:
#!/bin/sh
mount -t proc proc $CHROOT/proc
mount -t devpts devpts $CHROOT/dev/pts
chroot $CHROOT /bin/bash --login -c "/etc/init.d/ssh start"
The problem is that after executing the script above, I'm not able to open new terminals on the host system anymore:
urxvt: can't initialize pseudo-tty, aborting.
Shutting down the chroot (stopping sshd, unmounting proc and dev/pts) does not bring back new terminals on the host.
What am I missing here?