How to write an fstab line for full access to an NTFS drive?
Solution 1:
With umask
you define the options that should not be set. So umask=777
is the same as octal permission 000.
For some examples on how to convert between octal permissions and umask, see this Wikipedia entry.