[Solved] Cannot copy efi boot file, read only file system

Hello I am following the instructions on how to install haiku on efi, I followed until the terminal command, when I run it (mkdir -p /efiboot/efi/boot cp /system/data/platform_loaders/haiku_loader.efi /efiboot/efi/boot/bootx64.efi) I get the message (mkdir: cannot create directory ‘/system/data/platform_loaders/haiku_loader.efi’ : read-only file system) what did I do wrong?

It looks like you run it as one command,but they are two which need to be ran in separate lines.
First run: mkdir -p /efiboot/efi/boot
Then run: cp /system/data/platform_loaders/haiku_loader.efi /efiboot/efi/boot/bootx64.efi

1 Like

Fixed it! Thanks a lot!