Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. # <-- the # means this is a comment you don't need to type this in
  2. # remember "silence is success" if a command prints output something didn't work
  3. # stop and ask before proceeding to the next
  4. # create a directory on which to attach the installed system
  5. sudo mkdir /ubuntu;
  6. # mount the installed system to that directory
  7. sudo mount /dev/sda1 /ubuntu;
  8. # bind mount some special filesystem
  9. sudo mount --bind /dev /ubuntu/dev;
  10. sudo mount --bind /sys /ubuntu/sys;
  11. sudo mount --bind /proc /ubuntu/proc;
  12. # jump into the installed system
  13. sudo chroot /ubuntu;
  14. # you should now have a root prompt "inside" the installed system on /dev/sda1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement