Advertisement
wbushey

fstab

Jul 26th, 2014
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.07 KB | None | 0 0
  1. # /etc/fstab: static file system information.
  2. #
  3. # Use 'blkid' to print the universally unique identifier for a
  4. # device; this may be used with UUID= as a more robust way to name devices
  5. # that works even if disks are added and removed. See fstab(5).
  6. #
  7. # <file system> <mount point>   <type>  <options>       <dump>  <pass>
  8. # / was on /dev/sda2 during installation
  9. UUID=96cf5816-e5dc-4707-8a66-ab527d8f9ea1 /               ext4    errors=remount-ro 0       1
  10. # /home was on /dev/sda6 during installation
  11. UUID=bb866eea-76f4-497a-8c7e-932e624107ff /home           ext4    defaults        0       2
  12.  /dev/mapper/pdc_defgdijeg1 /mnt/storage    ext3    defaults,noauto        0       2
  13. # swap was on /dev/sda5 during installation
  14. UUID=9c728a70-b4d7-428c-8f2a-f5f613af8652 none            swap    sw              0       0
  15. /dev/sr0        /media/cdrom0   udf,iso9660 user,noauto     0       0
  16. /dev/sdd1       /media/usb0     auto    rw,user,noauto  0       0
  17. /dev/sdd2       /media/usb1     auto    rw,user,noauto  0       0
  18. /dev/sde1       /media/usb2     auto    rw,user,noauto  0       0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement