I just upgraded to the latest kernel a few days ago; so far, so good. I also changed the mount option for a shared NTFS partition and it’s showing correctly:
(From /etc/fstab
)
/dev/sdb4 /media/VMs ntfs3 uid=1000,gid=1000,umask=0022,dmask=0022 0 2
(After boot)
/dev/sdb4 ntfs3 1.2T 169.5G 1T 14% /media/VMs
However, in a script that I use to sync data with my Windows 10 partition, the mount
command is not honoring this:
mount /dev/sda3 -o ntfs3,uid=1000,gid=1000,umask=0077,dmask=0077 /media/Windows-C/
/dev/sda3 fuseblk 460.4G 118.2G 342.2G 26% /media/Windows-C
The mount
man page makes no reference to this, so I’m thinking I just need to wait for it to catch up. Does anyone know of a way to mount with ntfs3
from the command line?