Advertisement
Guest User

mount-opts

a guest
Jun 7th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. # !!! Do not edit this file. It can be overwritten in next update !!!
  2. # !!! Instead create and edit file /etc/default/mount-opts-overwrite !!!
  3.  
  4. # Options for mounting all filesystems
  5. common_opts="noatime,nodiratime"
  6.  
  7. # Options for mounting root's filesystems (/, /home)
  8. root_opts="errors=continue,commit=1,data=writeback"
  9.  
  10. # Options for mounting user's filesystems (MyDocs, SD cards, ...)
  11. user_opts="noauto,nodev,exec,nosuid"
  12.  
  13. # Options for different filesystems
  14. vfat_opts="utf8,uid=29999,shortname=mixed,dmask=000,fmask=0000,rodir"
  15. ntfs_opts="nls=utf8,uid=29999,umask=0000"
  16.  
  17. # Renerate fstab at boot time in /etc/event.d/rcS-late
  18. genfstab="1"
  19.  
  20. # When generating fstab add also swap partitions from SD card (if exists)
  21. swap_sd="0"
  22.  
  23. # Call fsck.<fstype> -p for /home at boot time in /etc/event.d/rcS-late
  24. home_fsck="1"
  25.  
  26. # Call fsck.<fstype> -p for user's partitions (MyDocs, SD cards, ...)
  27. user_fsck="1"
  28.  
  29. # Include overwrite file
  30. if [ -f /etc/default/mount-opts-overwrite ]; then
  31. . /etc/default/mount-opts-overwrite
  32. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement