I have received some research that is on 5. 25" floppies. My mobo supports 5. 25" disks, and, I have the disk drive. I am not trying to use this media long term, I just want the research data.
Update:
I just found out the file-system is some proprietary system put out by Varian. I have a machine that might be able to read the data... Or that machine might not work. If anyone knows about archaic Varian OSes / File-systems, I would be happy to hear about it.
Image mounting is current priority, I have been able to get disk images using ddrescue, and or safecopy. Both softwares show that there is block errors on some disks. I am still unable to mount the images the disks produce, mount persistently asks for file-system type. Fat, vfat, exfat, fat16 and some others I tried, but they fail, saying something like incorrect FS type. Yes, I have also tried combinations of -o loop.
I have been unable to determine FS type by looking at the hexdump -C output from the image files.
Also, I thried to determine FS type this way:
#dd if=lisa1.iso | file -
/dev/stdin: data
I still do not know how to get to where I can mount / see files.
I just read that 18k is the standard block-size of a single track, so this is the "native" amount of bits the floppy read heads want to read anyway. It should be fastest and have the best chance of getting all the resalable bits.
I will re-image the disks tomorrow.
My boss says he doesn't know what the File-system type is, or what it might have been. , I may able to locate the instrument which generated the data. This will require time to dig in the graveyard of old science equipment.
I have installed testdisk to try and do data recovery.
I can remember having to do something like this in 2008, but I can't recall now, how I used to recover floppy disk data.
When I run udisk, or mount I get an error saying the floppy is not a valid block device.
$ sudo mount /dev/fd0 Desktop/lisa/
mount: /dev/fd0 is not a valid block device
$ sudo udisks --mount /dev/fd0
Mount failed: Error mounting: mount: /dev/fd0 is not a valid block device
UPDATE1:
- Floppy Drive port options are on. I have them set to 5. 25" double
density
- The disk drive models are: Epson SD-700 and Epson SD-600
- The Disks are Verbatum DataLife MD 2D "Double Density"
- I have added the module for floppy disks.
UPDATE2:
$ sudo udisks --mount /dev/fd0
Mount failed: Error mounting: mount: you must specify the filesystem type
Mount gives the same error, but... I Don't know the File System type.
$getfdprm
DS QD sect=13
I ran this program from fdutils. http://www.fdutils.linux.lu/Fdutils.html DS means double sided QD means Quad Density sect=13 is a sector count. I don't really know what the output means, in terms of how to mount the disks and get the data.
What should I do to find the filesystem type?
UPDATE3: As a sanity check, I found a "new" box of blank, formatted floppies, I was able to read and write data, without specifying a File system type.
Assuming the Floppies I have with research on them are formatted, and have errors, might that prevent them from being mounted?
Heres what ddrescue is doing:
$ sudo ddrescue /dev/fd0 ~/Desktop/fd0.iso
Press Ctrl-C to interrupt
rescued: 454656 B, errsize: 1019 kB, current rate: 0 B/s
ipos: 538624 B, errors: 11, average rate: 69 B/s
opos: 538624 B, time from last successful read: 40 s
By default, the
floppy
kernel module is not loaded. To load the module, invokeRemember to add your user to the "floppy" group; to do that use
After the module is loaded you should be able to access the hardware and mount floppies.
I did some research about Varian files, and I came up with this. Said something about a custom 5 1/4" format for disks, customized BIOS routines - I skimmed it. Sounds like it runs from DOS, so maybe it'll work from DOSBOX? Here you go:
http://nmr.tamu.edu/vhelper.php
Re-reading it a bit, the last class of computer that they say it reliably works with is a 486 and almost not at all with Windows. If all else fails, at least you have some EXEs you can work backwards from to potentially determine the format. Here's hoping there's not a whole lot of BIOS patching going on. If you need to attack the Pascal EXE, you'll want to UnLzExe/Upack/Uncompress it before you toss it into your decompiler. Program files from that era are almost always compressed in some fashion. Good luck.
Older Updates
Got a lot of tips for you here:
Edit: Earned a downvote because the question changed, and I didn't change my answer fast enough. Or it's formatted like crap. Fair enough.
Updated Answer
Did you say those had 13 sectors per track? Wonder what kind of disks those are? Research says that they are likely Apple ][ floppies; I don't believe you can read those with a native IBM PC floppy controller. They could also be C64 or Atari disks
This isn't the one I remember, but it may help you out: http://www.deviceside.com/fc5025.html
Note: It says it cannot help you read "flippy" disks without an Apple/C64/Atari drives.
GNU ddrescue
Oh, I see that you are using ddrescue. Last version I used was 1.14, I can't imagine 1.16 is too different. Remember use -c15 for 5.25 QD, and -c18 for 3.5 HD.
Quick Rip, not using direct access. Log will help you remember that it is all good:
If the disk has bad spots, skip them. Use log for just hitting bad spots next time
If you need to get down and dirty and work around bad sectors, this splits and retries 5 times.
Mounting images
That is something I can answer!
To (hopefully) determine fs type:
OR
Now, once you can mount it loopback.
If it does manage to be one of those pesky HPFS disks, you may be able to use fdisk to determine the offset to mount the hpfs partition, because what you can initially see is just the HPFS FAT-equivalent. I've used it for hard disks before, it shouldn't be that different. Update your question, and I'll return and (hopefully) answer it.
If they're in DOS format, you probably want to use the tools from the mtools package rather than trying to mount it.
Install the mtools package from the archive, and then use "mdir", "mcopy", etc. to access the files.