I have a stack of old floppy disks in my server room and before disposing or donating them, I want to make sure they are cleaned. Can anyone suggest some free utilities (Windows or Linux) for securely wiping data from a floppy disk?

link|improve this question
feedback

16 Answers

I use dban for mass wiping of disks, it supports all the major overwrite standards and has very good hardware support. However, modern research seems to indicate that a single zero pass wipe is sufficient for data destruction. In that case, you might as well just use a linux system and issue the following command:

dd if=/dev/zero of=/dev/fda

This will overwrite the floppy with all zeroes. Change the zero to urandom for a pass of random characters.

link|improve this answer
3  
To quote Scotty: Always use the proper tool, if the proper tool isn't available try a hammer! (So true for this one) – Server Horror Jun 10 '09 at 6:47
Technically, this answers the question, but it's going to take forever to secure wipe a stack of floppy diskettes. – rob Apr 1 '10 at 17:55
feedback

Perhaps a bit more destructive then you are expecting, and completely worthless if you want to donate them. But I simply rip them open and then run the diskette through a cross-cut shredder. You can always follow that up by running shredded bits under bulk tape eraser.

link|improve this answer
Helps to relieve stress too. – Matt Hanson Jun 1 '09 at 1:11
1  
This will also be at least a hundred times faster than doing a secure wipe via software. – rob Apr 1 '10 at 17:45
feedback

I usually use shred to wipe data. I think it's pretty reliable...

link|improve this answer
feedback

If there is a lot of them, how about a good rubbing with a Neodymium magnet?

link|improve this answer
Seriously, I have a pack of 6 of them that I got from a hobby shop for three bucks. Much faster than waiting for a floppy drive to do it. Plus, the magnets know nothing of tracks and sectors and should thus be more thorough, actually. – Dennis Williamson Jun 1 '09 at 16:22
feedback

Who would you donate them to? I can't remember using a floppy in the last 8 years, seriously. How many do you have? If there isn't a ton of them, crush them with your hand for stress relief...

link|improve this answer
Our community reuse center takes them. People use them for arts and crafts projects and stuff like that. I have seen some pretty cool and creative stuff done with old junk. – user6844 Jun 1 '09 at 15:59
feedback

Give them to your wife:

alt text

link|improve this answer
feedback

Eraser is a great free program that lets you wipe to a variety of different paranoia levels and standards. It also adds secure file deletion secure file move to the right-click menu in explorer... very handy if you do this stuff regularly.

link|improve this answer
feedback

If you are running Windows 2000 or later, you can use cipher.exe (included with the OS) to securely overwrite deleted data on a drive.

Microsoft's KB article here: How To Use Cipher.exe to Overwrite Deleted Data in Windows

link|improve this answer
feedback

Don't wipe them in software. Huge waste of time, considering the rate of bad blocks you'll have. If you must, format them, it has better error handling characteristics. Beware that some of the advice given will result in disks that are not wiped past the first bad block.

Run a strong magnet over them. Beware that the metal in a 3.5" disk can injure you (or if it can't, your magnet isn't strong enough).

Then throw them away. Any cause that is worthy of giving a donation to is not going to be helped by a donation of garbage. If there is an organization that takes donations of garbage to be used in art projects, I guess it makes sense to give the disks to them. It just sounds unlikely.

link|improve this answer
I laughed when I thought of someone running dban on a pile of floppy disks...I guess most people don't remember (or don't know) how slow floppy disks were, even without any bad blocks. – rob Apr 1 '10 at 17:49
feedback

If you have installed the SpyBot Search and Destroy utility to secure your Internet Explorer, it comes bundled with a secure delete application.

link|improve this answer
feedback

In CS class in high school we had a giant magnet you could turn on to wipe disks. Of course, we had to do that to a classmate's homework once...just to test it. I'm sure it would work for you.

link|improve this answer
feedback

If you have a Linux system then use dd, or in a Windows system I would go for for Eraser

link|improve this answer
feedback

Use a super strong magnet and just wipe across the floppy :)

link|improve this answer
feedback

Try wipe , can get it from Knoppix or Ubuntu or most major linux distros. I would recommend running it on the disk rather than a partition if you can for added paranoia.

link|improve this answer
feedback

Big Fire - seriously, it's probably not much less environmentally damaging that just throwing them in the garbage and it will 100%, absolutely, positively kill all data in one handy way.

link|improve this answer
and will be fun. – pipTheGeek Jun 1 '09 at 8:26
Fire is the only guaranteed method. It is also the only method without a financial loss since none of the others is worth it considering the current usefulness of floppies ... and it will be fun. – Allen Jun 15 '10 at 22:55
you can blast off and nuke it from space...it's the only way to be sure... – Chopper3 Jun 16 '10 at 7:15
feedback

dban is very good. It can also wipe disks to a US Department of Defense standard. That should be fairly secure. :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown