$ mount | grep ntfs $ # mount | grep ntfs # The relevant line of the output of `mount` is this: /dev/sda2 on /media/WIN_DAT type fuseblk (rw,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other,blksize=4096,user)
The relevant line of /etc/fstab is this: UUID=… /media/WIN_DAT ntfs-3g rw,user,noatime,discard,commit=400 0 0 For privacy, I replaced the real identifier with a horizontal low ellipsis. Are the mount options in /etc/fstab fine if any normal Linux user should be able to access the data on that partition? (All normal users are statically present in /etc/passwd, and there are no dynamic users or groups.) The relevant line of /etc/mtab is this: /dev/sda2 /media/WIN_DAT fuseblk rw,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other,blksize=4096 0 0 df -hT reports this: /dev/sda2 fuseblk 932G 189G 743G 21% /media/WIN_DAT

