Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. mount --bind /dev FileSystem/dev
  2. # CHROOT
  3. cd Filesystem
  4. chroot .
  5. #MOUNT
  6. mount none -t proc /proc
  7. mount none -t sysfs /sys
  8. mount none -t devpts /dev/pts
  9. export HOME=/root
  10. export LC_ALL=C
  11. #sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 12345678 #Substitute "12345678" with the PPA's OpenPGP ID.
  12. apt-get update
  13. apt-get install --yes dbus
  14. apt-get install -y ubuntu-standard
  15. apt-get install -y casper
  16. apt-get install -y lupin-casper
  17. [...]
  18.  
  19. #UNMOUNT
  20. umount -lf /proc
  21. umount -lf /proc
  22. umount -lf /sys
  23. umount -lf /dev/pts
  24. #EXIT CHROOT
  25. exit
  26. umount FileSystem/dev
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement