Guest User

Untitled

a guest
Aug 15th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. `sudo mount /dev/sdXX /mnt`
  2.  
  3. sudo mount --bind /dev /mnt/dev
  4. sudo mount --bind /proc /mnt/proc
  5. sudo mount --bind /sys /mnt/sys
  6. sudo mount --bind /usr /mnt/usr
  7.  
  8. sudo chroot /mnt
  9.  
  10. sudo umount /mnt/dev
  11. sudo umount /mnt/proc
  12. sudo umount /mnt/sys
  13. sudo umount /mnt/usr
  14. sudo umount /mnt
Add Comment
Please, Sign In to add comment