You are not logged in.
Pages: 1
I recently dumped windows for Arch linux.
Now, for some reason, two of my drives will only mount as read only.
I've wiped them and reformatted but it doesn't help.
I have fast boot and secure boot disabled in the bios and windows in no longer installed on any of my drives.
I can mount ntfs drives rw no issue - just the newly formatted ext4 nvme drives refuse to mount rw
Any ideas on how to fix this.
Kind regards
Last edited by blgrace (2025-08-01 20:01:20)
Offline
I reformatted both problem drives as ntfs and they both mount.
I don't understand why I can't mount them after formatting to ext4 . . .
Last edited by blgrace (2025-08-01 04:54:43)
Offline
Please don't paraphrase, https://bbs.archlinux.org/viewtopic.php?id=57855
mountwould show whether the drive is *actually* mounted ro, but what's most likely happening is that your UID simply has no write access to the root node of the partition (which is default and normal - you cannot "touch /foo" either.
touch /run/media/$USER/ex4_drive/foo # fails
sudo touch /run/media/$USER/ex4_drive/foo # worksYou're looking at a real filesystem and will have to properly control ownerships and permissions
sudo mkdir /run/media/$USER/ex4_drive/$USER
sudo chown $USER:$USER /run/media/$USER/ex4_drive/$USER
touch /run/media/$USER/ex4_drive/$USER/fooOffline
Please don't paraphrase, https://bbs.archlinux.org/viewtopic.php?id=57855
mountwould show whether the drive is *actually* mounted ro, but what's most likely happening is that your UID simply has no write access to the root node of the partition (which is default and normal - you cannot "touch /foo" either.
touch /run/media/$USER/ex4_drive/foo # fails sudo touch /run/media/$USER/ex4_drive/foo # worksYou're looking at a real filesystem and will have to properly control ownerships and permissions
sudo mkdir /run/media/$USER/ex4_drive/$USER sudo chown $USER:$USER /run/media/$USER/ex4_drive/$USER touch /run/media/$USER/ex4_drive/$USER/foo
I'm very sorry, I don't understand those instructions.
sudo mkdir /run/media/$USER/ex4_drive/$USERReturns: cannot create directory ‘/run/media/blgrace/ex4_drive/blgrace’ no such file or directory.
Offline
"ex4_drive" was (a typo, meant ext4_drive - but more importantly) a placeholder for your ext4 partition, mounted into that path.
Offline
Seems it was leftover Windows gremlin shenanigans.
I disconnected the data cables to the two troublesome drives.
Reset bios to "optimized defaults", then disabled fast boot and secure boot.
Reconnected data cables and et voila . . .
Created two directories in /mnt to mount the drives - edited fstab and now they automount RW
Anyway - thanks for your help.
Offline
Pages: 1