I have shared an NTFS disk between Ubuntu 18.04 LTS and Windows 10 (I use it to store data which I want to access from both systems (music, documents...)). When I am in Windows 10 I can RWX over all the files and folders with no problem but in Ubuntu I am unable to get it properly working.
- I managed to get automatic mount running according to this: Automatic NTFS Partition Mount on Startup
- I managed to fix error "Read-only file system" when deleting files by remounting according to this: How to make read-only file system writable? but it is not persistent and when I delete some file for example it just reappears after refreshing the file browser window.
According to ls -l
the drive owner is root
and all the files seem to have all the permissions even before remounting (in the second step) which is also weird.
I need to make all permissions working correctly and persistent for the drive. I've read some other answers to similar problems but I was unable to get any further (make it work).
nodev,permissions,windows_names,nosuid,noatime,async,big_writes,timeout=2,uid=1000,gid=1000
ordefaults,nls=utf8,umask=000,uid=1000,windows_names
noatime is good for SSD or relatime for HDD. windows_names prevents use of invalid chars. uid can solve trash issues. big_writes can help speed a bit as NTFS is not a Linux format and has to use fuse driver. – oldfred Mar 16 '20 at 17:01