Thread
Filesystem Read-Only
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:
I'm getting an error when trying to copy something for it:
What is wrong?
Thanks,
Nathan Paulino Campos
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
Code:
$ sudo cp stuffit.bin /mnt/mac
cp: cannot create regular file `/mnt/mac/stuffit.bin': Read-only file system
Thanks,
Nathan Paulino Campos
man mount gives a clue. Try mount -o rw instead.
Instead, try:
-o rw sets the disk to be read/write
-o ro sets the disk to be read only
Code:
$ sudo mount -o rw -t hfs ./hfs24M.DSK /mnt/mac -o loop
-o ro sets the disk to be read only
Double -o parameters.
-o rw,loop
-o rw,loop