/etc/fstab : filesystem table ============================= Public domain ******************************************************************************** ### snip from mount manual __defaults__ : rw, suid, dev, exec, auto, nouser, and async. __rw__ : Mount the filesystem read-write. __sync__ : All I/O to the filesystem should be done synchronously. In case of media with limited number of write cycles (e.g. some flash drives) "sync" may cause life-cycle shortening. __user__ : Allow an ordinary user to mount the filesystem. __auto__ : Can be mounted with the -a option. __exec__ : Permit execution of binaries. __dev__ : Interpret character or block special devices on the filesystem. __suid__ : Allow set-user-identifier or set-group-identifier bits to take effect. ******************************************************************************** ### Mount ntfs as read/write filesystem /dev/sda1 /C ntfs-3g defaults 1 0 ******************************************************************************** ### Allow an ordinary user to mount the filesystem LABEL=3T /mnt/3T reiserfs noauto,user,exec,async,dev,suid,rw 1 2 ******************************************************************************** _BY: Pejman Moghadam_ _TAG: ntfs, fstab_ _DATE: 2011-07-13 14:44:11_