Skip to the content.

Dual Boot Disk Permission Problem

Resolving “Read-only file system” Error

The error Read-only file system indicates that the file system mounted at /mnt/XXX/ is mounted as read-only. To change the permissions, follow these steps:

1. Check Current Mount Options

mount | grep '/mnt/'

2. Remount the File System with Read-Write Permissions

sudo mount -o remount,rw /mnt/XXX/

3. Change the Permissions

sudo chmod ugo+rwx /mnt/XXX/

4. Verify the Changes

ls -ld /mnt/XXX/

Possible Issues if Remounting Fails

Check /etc/fstab and ensure that the file system is not explicitly set to be read-only. If necessary, edit the file to allow read-write access:

sudo vi /etc/fstab

Find the relevant line and change ro to rw. Then, remount the file system again:

sudo mount -o remount /mnt/F272D12672D0F079/