Skip to main content
Home Forums Filesystem Read-Only Filesystem Read-Only
Thread

Filesystem Read-Only

Filesystem Read-Only 68k 5 posts Oct 29, 2009 — Oct 30, 2009
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

man mount gives a clue. Try mount -o rw instead.

I got the same error.

Remember that I'm using the Blanks floppy images.

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

Double -o parameters.

-o rw,loop

mp.ls