HI Thanks again for the help to all who have replied.
The floppies are old Mac formatted MF2HD 1.40 mb, not 1.44mb, so maybe my laptop is not reading/mounting them because they are not 1.44?
I have tried Ctrl-F1, Ctrl-F4, and Ctrl/Shift F11 but none of these options work for me.
my system shows that I have the hfsutils packages
I am new to Ubuntu and obviously new to Basiliskll, so please excuse this question, but in creating the disk image, I am assuming that I would put the floppy in the computer, and then run the dd command through the terminal? The created file would be on the desktop, move it to the home folder and then to the Basiliskll volumes in the GUI, does this sound correct?
Thanks again!
Pete
By the way, I have also tried this as noted on
http://sourceforge.net/projects/basilis ... pic/653456, but I may not have copied the text exactly into the right location, because it did not help.
"The code to detect if the floppy is inserted tries to read from the floppy device file which is opened when Basilisk starts and which fails once the floppy is changed.
The workaround I used was to change the code to close and reopen the floppy device file.
basilisk2-0.9.20020115 on Debian Linux Kernel 2.4.18 i386
In sys_unix.cpp I added these lines:
if (read(fh->fd, block, 512) == 512)
return true;
// try to close / open / retry"
close(fh->fd);
fh->fd = open(fh->name, fh->read_only ? O_RDONLY : O_RDWR );
if (fh->fd < 0) {
fh->read_only = true;
fh->fd = open(fh->name, O_RDONLY );
}
lseek(fh->fd, 0, SEEK_SET);
just before the line:
return read(fh->fd, block, 512) == 512;