Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. cat /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/sda11 during installation
  11. UUID=a83b92ee-6243-4fd8-9008-17c05ef8715e / ext4 errors=remount-ro 0 1
  12. # /boot/efi was on /dev/sda2 during installation
  13. #UUID=C0A6-125C /boot/efi vfat defaults 0 1
  14. # /home was on /dev/sda10 during installation
  15. UUID=bb008f49-2160-43d6-9ee2-84023072b571 /home ext4 defaults 0 2
  16. # swap was on /dev/sda9 during installation
  17. UUID=d7de343e-1cad-446a-b7ba-355414132816 none swap sw 0 0
  18. UUID=C0A6-125C /boot/efi vfat defaults 0 1
  19.  
  20.  
  21. [ -d /sys/firmware/efi ] && echo "EFI boot on HDD" || echo "Legacy boot on HDD"
  22. EFI boot on HDD
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement