| Click here to select a new forum. |
| Filesystem Read-Only |
Posted by: nathanpc on 2009-10-29 08:19:07 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:
$ sudo mount -o ro -t hfs ./hfs24M.DSK /mnt/mac -o loop I'm getting an error when trying to copy something for it:
$ 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
|
Posted by: Charlieman on 2009-10-29 08:36:25 man mount gives a clue. Try mount -o rw instead.
|
Posted by: nathanpc on 2009-10-29 08:50:29 I got the same error.
Remember that I'm using the Blanks floppy images.
|
Posted by: Charlieman on 2009-10-29 12:50:25 Instead, try:
$ 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
|
Posted by: RichardG on 2009-10-30 04:55:08 Double -o parameters.
-o rw,loop
|
| 1 |