Disclaimer: I am very new to Linux (1 week).
I have installed the Valve version of Steam on LMDE6. I have used Disks to automatically mount the NTFS drive I used with Windows (doesn’t hold bootloader, it is just for Steam library storage) at boot ( /media/[username]/Gaming ) and I made it the default library folder in Steam.
Running games works perfectly (actually, performance is surprisingly good), but I cannot install them due to a “disk write error”.
I looked for solutions and found this page, from which I understand that I need to change permissions to the mounting point, but when I do, using chown -R, I get a “Read-only filesystem” error for all files and folders.
I can see no options to fix this in Disks and I tried to edit fstab once, but it messed things up so badly I had to use the USB drive with the portable installer to fix things.
When you run
$ mount
, you probably see something like this:If so, that entire filesystem is mounted read-only (hence the “ro” flag).
chown
isn’t going to affect that. It alters permissions on files and directories within a filesystem.I have no idea what Disks is, but I assume that it’s some kind of graphical utility.
I’d probably try doing this, which will only affect the current mount; it won’t persistent to the next boot:
If that resolves the issue, then the issue is going to indeed be that it’s mounted read-only.
I suspect that there’s probably an option in this Disks thing to mount it read-write. I have never seen the thing, so I can’t give any advice there.
If you want to stick it in /etc/fstab and mount it at boot, if you let me see the line you get back from
mount
above, maybe censoring the username, I can probably tell you what to put there.