3

I have a floppy disk or 2 that I'd like to keep for a long time, and frankly I'm amazed that they've lasted this long. I'd like to make a copy on the hard disk that I can use to recreate the floppy if need be. For CDs they have the ISO format, is there anything similar for floppy disks?

If I were using Linux I'd probably try to use dd to copy all of the disk blocks, but I'm using Windows. Thanks.

Mark Ransom
  • 240
  • 1
  • 5
  • 10

6 Answers6

9

If anything ever achieved the status with respect to floppy images that ISO has with respect to CDs, I never heard of it. It's pretty much down to however particular imaging software works, though naturally a straight dd-style image is popular. I'd recommend using the fdimage utility that FreeBSD uses for its install .flp files; at minimum you can be pretty confident you'll always be able to locate it easily for download.

chaos
  • 7,463
  • 4
  • 33
  • 49
5

(Edit: I know you're under Windows, but I wrote this for completeness)

Real men use cat(1) instead of dd(1) ;-)

cat /dev/fd0 > floppy.img

Remember that under Linux you can always use your floppy image without resorting to fossil media

mkdir /mnt/floppy; mount -oloop floppy.img /mnt/floppy
codehead
  • 958
  • 5
  • 7
  • It never occurred to me that cat would work. I agree that the *nix solution belongs here for completeness - thanks! – Mark Ransom Jun 08 '09 at 14:46
4

Get a copy of rawrite. It creates an image that can be written back to media using dd (or, of course, rawrite).

Gavin McTaggart
  • 1,826
  • 16
  • 14
  • 2
    Check out the link in my answer... FreeBSD moved from rawrite to fdimage a while ago because fdimage is a bit nicer (doesn't require a separate formatting operation, at least). – chaos Jun 08 '09 at 05:04
  • Nice to see that this has been ported to Windows proper, although I'm not afraid to use the command prompt. Thanks. – Mark Ransom Jun 08 '09 at 05:18
  • Cool. I wasn't aware of fdimage, but then again, the last time I had to even use rawrite 'in anger' was about 13-14 years ago with Slackware Linux. I've archived many floppys since, but never actually had to restore any (to media, at least). Which is actually a good thing, since I don't appear to have a floppy drive any more... – Gavin McTaggart Jun 08 '09 at 05:31
  • @Gavin: most VM solutions come with as many (virtual) floppy drives you ever want to have, no? :) – David Schmitt Jun 08 '09 at 07:07
  • @David: True, but I haven't had to restore an image back to *media* for a long, long time. I have definitely mounted images as file-systems and to VMs though. – Gavin McTaggart Jun 08 '09 at 07:26
3

MagicISO does this flawlessly. There's even a tutorial to show you how easy it is to do. MagicISO is also really handy when it comes to CD/DVD images (as the name implies).

Matt Hanson
  • 1,672
  • 1
  • 23
  • 33
3

I meant to mention that DF32 has an option to save a "raw" image, that does not have the DFI file header, it's just the sector data, and is mountable in a VM. And I found the XP version does work in Win7, I successfully read a set of install diskettes from 1992, using a USB-connected diskette drives. (Yes I was amazed!) :-) http://mcgintys.net/diskfactory/

Mark McGinty
  • 131
  • 4
  • You should add a link to DF32 to make this a complete answer. Sadly I no longer have a PC with a floppy drive, I don't know how useful this question/answer set will be in the future. – Mark Ransom Oct 31 '15 at 03:19
2

I've used DiskFactory32 since the days of Windows 95/NT4. It was a shareware program written by Mark McGinty, but it unfortunately seems to have disappeared from the net. Download links lead you round in circles, and the domain name now tries to sell you CDs and DVDs. I still have an installer for v3, but I don't know if it's legal to post for download. Shout if you think need it and I'll see what I can do.

DiskFactory was a floppy disk imaging utility which created a .DFI (Disk Factory Image) image file of a floppy disk, or you could directly copy disk-to-disk. It was a true sector-based copy and could successfully read passed bad sectors and even physical damage. The only limitation compared to ISO images was that you could not mount a DFI image.

As suggested by David Schmitt, you could always do it via a virtual machine. Most (all?) virtualization tools will allow you to use an image as a virtual floppy disk. Just archive the floppy image once you've copied to it.

On the other hand, I'd don't see the point of archiving floppy images (except perhaps for nostalgic reasons) since floppy disks themselves are quickly becoming history. See this article on Ars Technica. Surely the contents are sufficient?

Nicolas
  • 201
  • 1
  • 3
  • 8
  • Not if the disk has fancy boot sector info on it, that doesn't get preserved when doing a file copy. – Mark Henderson Jun 22 '10 at 11:25
  • 1
    Fair enough, but with the fact that floppy disks are quickly becoming extinct, what will anyone do with that boot sector info? Side note: We in South Africa are evidently the only people to call the 3 1/2" disk a "stiffy" - see note (4) on Wikipedia (http://en.wikipedia.org/wiki/Floppy_disk) – Nicolas Jun 22 '10 at 13:15
  • One of the floppies I want to archive is the install disk of a piece of software, which is required to install an upgrade of the same software. The contents alone are not sufficient unless I can coerce those contents onto drive A:. – Mark Ransom Jul 28 '10 at 03:42
  • 1
    Thanks for the kind words Nicolas, and sorry DiskFactory dropped out of sight. After sales dropped off to nothing I declared it to be freeware and sold the domain to the CD/DVD people -- under the condition that they maintain a link to a page for DF32 forever. They dropped that link less than a year later (WTF happened to honor?) In any case, it can still be found here http://mcgintys.net/diskfactory/ Sadly I couldn't tell you whether or not it works in Win7 or later, I don't own a floppy disk drive anymore. The last O/S version I tested it under was XP. (There is a separate download for XP, b – Mark McGinty Jul 24 '15 at 06:42
  • @Mark McGinty - Great to hear from a developer himself. – Nicolas Jul 27 '15 at 09:01