vote up 1 vote down star
1

I still have a large number of floppies. On some of them there probably is source code I don't want to lose. I also don't want to take look at each one individually, as that's going to take a lot of time. What software would be best for copying all data to a hard disk, preferably while creating an index at the same time?

I would also be interested in imaging mac floppies, but it doesn't have to be on the same machine.

[responses]
The goal is to finally get rid of all those boxes with floppies. I was asking about images as xcopy doesn't copy all (hidden?) sectors, does it? Is xxcopy better?

I don't want to type a name for each floppy.

Disk Utility on the mac probably needs a bit too much keyboard or mouse action, but might be appescriptable

flag

BTW I think you mean "imaging", not "imagining". :-) – ShreevatsaR Nov 29 '08 at 22:57
Thank you, corrected – Stephan Eggermont Nov 30 '08 at 0:06

7 Answers

vote up 8 vote down check

Here is a script I used on my Linux box to perform the same type of task. Basically I just a raw image of each disk to a folder. I had another script I ran later that mounted each and dumped a directory listing into a file.

#!/bin/bash

floppydev='/dev/sdb'
savepath='/srv/floppy_imgs'
while true
do
  echo "Press a key to create an image of the next floppy"
  read -n 1

  dd if=$floppydev of=/dev/null count=1 2> /dev/null
  errlvl=$?
  #if the disk isn't in the drive then wait
  while [ $errlvl -ne 0 ]
  do
    sleep 1
    dd if=$floppydev of=/dev/null count=1 2> /dev/null
    errlvl=$?
  done

  filename=$(date +'img-%Y%m%d-%H%M%S.flp')

  if [ ! -f $savepath/$filename ]
  then
    echo "creating image as $filename"
    dd if=$floppydev of=$savepath/$filename
    errlvl=$?

    if [ $errlvl -ne 0 ]
    then
      echo 'the image copy failed!'
      rm -i $savepath/$filename
    else
      mlabel -s -i $savepath/$filename ::
      md5sum $savepath/$filename > $savepath/$filename.md5
      echo "copy complete"
      echo " "
    fi
  fi

done
link|flag
dd is the tool to take images from/onto floppy disks. In a *nix you can even mount the images and inspect/modify them without a physical drive. It'll copy even hidden files/sectors or non-standard formats, I've used them for non-standard "activation-key" floppy disks in the past. – Joe Pineda Dec 1 '08 at 20:28
vote up 1 vote down

Use rawread and rawrite.

There may be various implementations, the first one I found was this: http://www.pamarsystems.com/raw.html

link|flag
vote up 1 vote down

I've used WinImage with satisfying results.

link|flag
vote up 1 vote down

On OS X maybe you can simply use DD?

link|flag
vote up 0 vote down

I am not too sure of your goal. Somehow, what you need is a robot, inserting the floppies, copying, etc. :-)

I would just make a bunch of empty folders, insert disk, do select all and drag to nth folder. Or use something like xcopy or xxcopy to transfer recursively data from floppy to folder. Etc.

link|flag
Yeah, a robot would be nice. – Stephan Eggermont Nov 29 '08 at 21:09
You may be better off making images of the floppies, straight copying of files won't give you boot sectors and such. – paxdiablo Feb 27 at 5:50
@Pax: Right! But boot sectors are not very useful if you get rid of the physical floppies and apparently the goal is just to have the file. Having images of the floppies need an extra step to get the files. We loose floppy name, that's the major issue. – PhiLho Feb 27 at 10:16
vote up 0 vote down

DOS? Why don't you just create yourself a batch file which makes a new folder in a prescribed location which is named as the current timestamp and copy the contents of your floppy drive over. That way you can watch TV while you insert floppies and run your batch file. As long as you put them into the drive in a known order you can identify which one is which by sorting the resulting folders by timestamp.

Not sure what the equivalent would be on the mac, but I'm sure there is one.

Edit: I think everything you should need is in here

link|flag
vote up 0 vote down

On the Mac, you could probably use the Disk Utility to convert the floppies to DMG files - but I haven't had a Mac floppy drive in years, so I can't test that theory.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.