Category: General

How to chroot to a linux system from livecd

  • Boot from livecd
  • Mount the disk
mount /dev/sda1 /mnt
  • Mount proc, sysfs and dev
mount -t proc none /mnt/proc
mount -t sysfs sys /mnt/sys
mount -o bind /dev /mnt/dev

* Chroot

chroot /mnt/ /bin/bash

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.