I used this Method to mount a ext4 and an NTFS drive pretty much the same way, only difference in Filesystem. However the NTFS drive giving me issues, for example some tools don’t seem to be able to write on this drive (guess because it is mounted as root).
So i checked the drive with “stat” and i would get
ntfs is a reverse engineered foreign filesystem - and linux only supports reading and writing oob - using the ntfs-3g driver.
While there is kernel support for the file system developed by Paragon Software - ntfs3 - the inclusion in kernel seem to be more a media stunt - as the developer has been unreachable since.
Mounting a partition formatted with ntfs will always be mount rw - no matter the permissions on the mountpoint - you don’t have to specify anything.
Example
$ ls -l /mnt/ntfs-ro
total 8
drwxr-xr-x 2 root root 4096 3 sep 09:38 ntfs-ro
If you’re going to be using either systemd-mount units or a /etc/fstab record for an NTFS volume, then you should include the necessary mount options for setting the UID and GID to those of the user account you want to give full access to, i.e. UID=1000 and GID=1001.
NTFS does not store any POSIX file ownership or permissions, so they need to be emulated at mount time.