Advertisement
Guest User

fstab

a guest
Apr 28th, 2013
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. root@linux-server:~# 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. #System
  10. proc /proc proc defaults 0 0
  11. #Root
  12. /dev/mapper/sda3_crypt / ext3 errors=remount-ro 0 1
  13. #Boot
  14. /dev/sda1 /boot ext3 defaults 0 2
  15. #Swap
  16. /dev/mapper/sda2_crypt none swap sw 0 0
  17. #Data0
  18. /dev/mapper/sdb1_crypt /data/data0 ext3 defaults,noatime,nodiratime 0 2
  19. root@linux-server:~#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement