I want to mount /dev/sdb1 to /home/user/sdb1 but the partition always read-only. This is my /etc/fstab configuration:
UUID=0B02A9EE38EE115F /home/user/sdb1 ntfs defaults 0 0
I see on Fstab Documentation the defaults option is rw, it means read-write. But I got my mounted partition in read-only mode.
$ sudo cat /proc/mounts | grep /dev/sdb1/dev/sdb1 /home/user/sdb1 fuseblk ro,relatime,user_id=0,group_id=0,allow_other,blksize=4096 0 0
Even, I changed the "defaults" options to specific options. The file system is still read-only.
UUID=0B02A9EE38EE115F /home/xdnroot/sdb1 ntfs rw,suid,dev,exec,auto,nouser,async 0 0
How could this happen? And how to fix it using fstab. Not manual unmount and mount again with rw option.