Paste Code
Paste Blends
Paste Images
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda5 during installation
UUID=28b74d05-8240-4581-a9d3-e3ff7fe22543 / ext4 errors=remount-ro,user_xattr 0 1
# swap was on /dev/sda6 during installation
UUID=3df9b83f-b8f4-4e34-b8bf-4516b2f8a90c none swap sw 0 0
UUID=b95fb488-791f-4af8-b689-6492c67538c4 /boot ext4 defaults 0 2
  1. # /etc/fstab: static file system information.
  2. #
  3. # Use 'blkid -o value -s UUID' to print the universally unique identifier
  4. # for a device; this may be used with UUID= as a more robust way to name
  5. # devices that works even if disks are added and removed. See fstab(5).
  6. #
  7. # <file system> <mount point>   <type>  <options>       <dump>  <pass>
  8. proc            /proc           proc    nodev,noexec,nosuid 0       0
  9. # / was on /dev/sda5 during installation
  10. UUID=28b74d05-8240-4581-a9d3-e3ff7fe22543 /               ext4    errors=remount-ro,user_xattr 0       1
  11. # swap was on /dev/sda6 during installation
  12. UUID=3df9b83f-b8f4-4e34-b8bf-4516b2f8a90c none            swap    sw              0       0
  13. UUID=b95fb488-791f-4af8-b689-6492c67538c4       /boot   ext4    defaults        0       2
go to heaven