1. https://wiki.debian.org/de/chroot
  2. https://wiki.debian.org/chroot
  3. https://wiki.debian.org/RescueLive

 

  1. mount /dev/disk/by-id/*-part1 /mnt
  2. for i in proc sys dev; do mount --bind /$i /mnt/$i; done
  3. mount --bind /dev/pts /mnt/dev/pts
  4. mount --bind /etc/resolv.conf /mnt/etc/resolv.conf
  5. chroot /mnt /bin/zsh

 

  1. umount /mnt/dev/pts
  2. umount /mnt/etc/resolv.conf
  3. for i in proc sys dev; do umount /mnt/$i; done