Advertisement
Guest User

fstab

a guest
Jan 22nd, 2012
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.23 KB | None | 0 0
  1. ubuntu@ubuntu:~$ cat /ubuntu32/etc/fstab
  2. # /etc/fstab: static file system information.
  3. #
  4. # Use 'blkid' to print the universally unique identifier for a
  5. # device; this may be used with UUID= as a more robust way to name devices
  6. # that works even if disks are added and removed. See fstab(5).
  7. #
  8. # <file system> <mount point>   <type>  <options>       <dump>  <pass>
  9. proc            /proc           proc    nodev,noexec,nosuid 0       0
  10. # / was on /dev/sda2 during installation
  11. UUID=741182a8-3f15-4dfd-994d-654c8a57a9e4 /               ext4    errors=remount-ro 0       1
  12. # /boot was on /dev/sda1 during installation
  13. UUID=3582d70f-f4a5-484c-b14c-45cd740346b9 /boot           ext2    defaults        0       2
  14. # /home was on /dev/sda5 during installation
  15. UUID=3515d523-72a2-4e04-b7da-cb6a1fd572ef /home           ext4    defaults        0       2
  16. # /ubuntu64 was on /dev/sda3 during installation
  17. UUID=1c415472-a770-4d76-be9f-27b8c1408e2a /ubuntu64       ext4    defaults        0       2
  18. # swap was on /dev/sda6 during installation
  19. UUID=f1f1cd7e-30cb-44e7-9ef6-986a589e0045 none            swap    sw              0       0
  20.  
  21. ubuntu@ubuntu:~$ cat /ubuntu64/etc/fstab
  22. # /etc/fstab: static file system information.
  23. #
  24. # Use 'blkid' to print the universally unique identifier for a
  25. # device; this may be used with UUID= as a more robust way to name devices
  26. # that works even if disks are added and removed. See fstab(5).
  27. #
  28. # <file system> <mount point>   <type>  <options>       <dump>  <pass>
  29. proc            /proc           proc    nodev,noexec,nosuid 0       0
  30. # / was on /dev/sda3 during installation
  31. UUID=1c415472-a770-4d76-be9f-27b8c1408e2a /               ext4    errors=remount-ro 0       1
  32. # /boot was on /dev/sda1 during installation
  33. UUID=3582d70f-f4a5-484c-b14c-45cd740346b9 /boot           ext2    defaults        0       2
  34. # /home was on /dev/sda5 during installation
  35. UUID=3515d523-72a2-4e04-b7da-cb6a1fd572ef /home           ext4    defaults        0       2
  36. # /ubuntu32 was on /dev/sda2 during installation
  37. UUID=741182a8-3f15-4dfd-994d-654c8a57a9e4 /ubuntu32       ext4    defaults        0       2
  38. # swap was on /dev/sda6 during installation
  39. UUID=f1f1cd7e-30cb-44e7-9ef6-986a589e0045 none            swap    sw              0       0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement