Em uma máquina Debian Jessie eu tenho uma imagem rootfs que eu chroot desta forma:
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
ao sair eu faço o contrário:
rm /mnt/myimage/usr/bin/qemu-arm-static
umount /mnt/myimage/sys
umount /mnt/myimage/proc
umount /mnt/myimage/dev
umount -l /mnt/myimage
Mas quando tento abrir um novo terminal em minha máquina host, recebo o seguinte erro:
Execution of the child process failed
getpt failed: file or directory not exists (translated from Italian)
Talvez eu esteja esquecendo alguma coisa?