退出 chroot 导致 getpt 失败

退出 chroot 导致 getpt 失败

在 Debian Jessie 机器上,我有一个 rootfs 映像,我通过以下方式 chroot 它:

mount myimage.img /mnt/myimage
cp /usr/bin/qemu-arm-static /mnt/myimage/usr/bin/
mount --rbind /dev /mnt/myimage/dev
mount -t proc none /mnt/myimage/proc
mount -o bind /sys /myimage/sys
chroot /mnt/myimage

退出时我做相反的事情:

rm /mnt/myimage/usr/bin/qemu-arm-static
umount /mnt/myimage/sys
umount /mnt/myimage/proc
umount /mnt/myimage/dev
umount -l /mnt/myimage

但是当我尝试在主机上打开一个新终端时出现以下错误:

子进程执行失败

getpt 失败:文件或目录不存在(意大利语翻译)

我可能忘记了什么?

相关内容