• Updated 2023-07-12: Hello, Guest! Welcome back, and be sure to check out this follow-up post about our outage a week or so ago.

Filesystem Read-Only

nathanpc

Member
Hello,

I'm emulating a Mac Plus in my Linux machine, but I'm using the same image in another emulator that is emulating a Mac IIci, the thing is that when I'm trying to mount my hfs24M.DSK using this command:

Code:
$ sudo mount  -o ro -t hfs ./hfs24M.DSK /mnt/mac -o loop
I'm getting an error when trying to copy something for it:

Code:
$ sudo cp stuffit.bin /mnt/mac
cp: cannot create regular file `/mnt/mac/stuffit.bin': Read-only file system
What is wrong?

Thanks,

Nathan Paulino Campos

 

Charlieman

Well-known member
Instead, try:

Code:
$ sudo mount  -o rw -t hfs ./hfs24M.DSK /mnt/mac -o loop
-o rw sets the disk to be read/write

-o ro sets the disk to be read only

 
Top