Okay, I’ll give it a try.
Okay, I got it.
Windows assumes it is the only system - fast startup will work reliably.
But it gets in the way when the same file system is going to be accessed from within another system.
Then the file system is not “clean” - Windows preserved the state and knows about it.
The other system doesn’t …
Also, as you could have read in the tutorials I posted — specifically, the first one — your mount options in /etc/fstab
are wrong.
If you want to be able to write to them as a regular user, then it should be something like this…
UUID=01D6D6DDA6146800 /mnt/Data ntfs-3g auto,nofail,uid=1000,gid=1000,utf8,umask=022,defaults 0 0
UUID=5E7E4E247E4DF575 /mnt/Fun ntfs-3g auto,nofail,uid=1000,gid=1000,utf8,umask=022,defaults 0 0
When you mount in fstab you mount as root and when you mount as root on system folder your mount is readonly.
Permissions on the mountpoint is defining what can be done with content so to avoid messing with a sysem folder always create your own dedicated structure.
e.g. device with exfat filesystem becomes readonly it the mountpoint is owned by root:root.
with ntfs it is different as ntfs can contain information about hibernation state which causes the kernel to mount readonly.
so you should reboot into Windows and ensure a clean shutdown before you attempt to write to the partition(s)
also ensure the mountpoint has the correct permissions e.g. owned by root:users as your user should be member of the users group which will ensure you can write to the device.
Thank you so much, I disabled the fast start and hybrid sleep. I didn’t notice this issue before and only today because I usually don’t shut down Windows, I reboot it and those options doesn’t affect the reboot. Yesterday was the first time to shut down windows from the day I installed dual system.
Thank you so much for help. The issue is in the fast start and hybrid sleep, like you both said.
Do I have to change fstab to be like this? Or as it’s working fine, I don’t change anything.
Thanks for replying, this is the issue. I disabled fast startup and hybrid sleep. Is there anything I should disable, too??
Yes, I do recommend changing your /etc/fstab
into what I posted.
Thank you, I changed it.
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.