Advertisement
Guest User

Untitled

a guest
Jul 31st, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 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.  
  9. # Optimize ext4 for SSD
  10. UUID=xxx / ext4 noatime,nodiratime,errors=remount-ro 0 1
  11.  
  12. # Mount NTFS
  13. UUID=xxx /media/data ntfs defaults,windows_names,errors=remount-ro 0 2
  14.  
  15. # Use swapfile
  16. /swapfile none swap sw 0 0
  17.  
  18. # Mount samba share
  19. # Add "mount /media/smb" into /etc/rc.local before exit
  20. //ip/path /media/smb cifs username="username",password="password",noauto,user,_netdev 0 0
  21.  
  22. # Mount nfs share
  23. ip:/export /media/nfs nfs defaults,bg,noatime,nodiratime,_netdev 0 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement