Advertisement
Guest User

fstab

a guest
Nov 5th, 2011
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.44 KB | None | 0 0
  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/sda2 during installation
  10. UUID=cc32ddeb-0402-491a-b8f4-4b561da7a3c9 /               ext4    errors=remount-ro 0       1
  11. # swap was on /dev/sda6 during installation
  12. UUID=9b6f5994-d6fa-47ec-be42-62ce649952f2 none            swap    sw              0       0
  13.  
  14.  
  15. # ntfs - Так работает, но nautilus отображает ещё и ссылки на монтирование /dev/sdX
  16. #UUID=122444E40CD83FA2                      /media/System      ntfs users,uid=1000,umask=0 0 0
  17. #UUID=FC1EBEE11EBE945C                      /media/MEDIA       ntfs users,uid=1000 0 0
  18. #UUID=A8F0ADD5F0ADAA50                      /media/MULTIMEDIA  ntfs users,uid=1000 0 0
  19.  
  20. # ntfs - Так работает, но не UUID           
  21. /dev/sdb1                      /media/System      ntfs users,uid=1000,umask=0 0 0
  22. /dev/sdb6                      /media/MEDIA       ntfs users,uid=1000 0 0
  23. /dev/sda5                      /media/MULTIMEDIA  ntfs users,uid=1000 0 0
  24.  
  25. # ext3
  26. UUID=eec34059-b702-467c-b404-fa70f6e133a0  /media/DD          ext3 defaults 0 0
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement