Results 1 to 13 of 13

Thread: Need a utility to Zero a hard drive

  1. #1

    Need a utility to Zero a hard drive

    I'm looking for a utility that I can use to completely Zero a hard drive (write 0's over every sector, and hopefully random other junk on it to really screw the data up).

    I tried google.. but got back garbage (maybe I'm using bad terms).

    Any help here (freeware would be best).

  2. #2
    Commander zero2dash's Avatar
    Join Date
    Dec 2000
    Location
    Fenton, MO - but I wish I was at the beach. ANY beach.
    Posts
    1,367
    Did someone say "zero"?
    I kid, I kid.

    This site has links to the major HD manufacturers and the apps pages to do a low level format.

    [edit]Apparently some of the manufacturers don't seem to have the software up anymore to download; at least it looked like Western Digital didn't, and Maxtor requires you to have a Maxtor drive to use MaxBlast. Check that site first and if you can't find a software from the drive manufacturer, you could also try this program called Kill Disk. (there is a free version to download that will work fine)

    [edit 2]Found another site that has links to the software from the manufacturers, for those that don't supply it anymore. Here

    [edit 3]Samsung

    I think I've covered them all.
    Last edited by zero2dash; 01-09-2006 at 11:19 AM.

  3. #3
    aka the keg killer mechmike0034's Avatar
    Join Date
    Dec 2002
    Location
    Ala-effin'-bama!
    Posts
    2,738
    There are several of these on The Ultimate Boot CD - a handy addition to your toolkit, and free.

    Download the .iso from http://www.ultimatebootcd.com/
    "The price of progress is trouble." (C. F. "Boss" Kettering)
    "50% of the American public has below-average intelligence. 70% of the American public now has regular access to the Internet. Do the math." (unknown)

  4. #4
    What's Da Pho*? bachviet's Avatar
    Join Date
    Aug 2001
    Location
    SoCal (714)
    Posts
    13,301
    A big magnet would certainly do.
    Dell Dimension 9200 | Intel Core 2 Quad Q6600 (2.4GHz) | 4x1GB DDR2 | 256MB nVidia GeForce 8800GT

    Dell Studio 17 | Intel Core i7-720QM (1.6GHz) | 6GB DDR3 1066MHz | 1GHz ATI Mobility Radeon HD 4650

    Intel P4-C 3.0GHz | ECS 865PE-A | 3x512MB PC3200 | 128MB PNY GeForce 6600GT

    http://[img]http://sfx-images.mozill....gif[/img]

  5. #5
    Lieutenant Commander shocky123's Avatar
    Join Date
    Aug 2004
    Location
    Ames, Iowa
    Posts
    828
    * grabs a big magnet and begins writing zero's *

    Man this is faster than fdisk'ing for formating.. wheee

    LOL, well depending on which OS you're running, it's really not a horribly intense experience to create a program that just writes out zero's to a specific 'file'. File being the 'file descriptor' that is associated with your drive.
    Then you can easily write 'random data' onto the disk in the same fashion using seeded random function calls.

    However, this may take an hour or two, so I'd suggest the magnet trick
    (j/k)

    ~Kyle
    "me awaits onslaught of estrogen fury." -CornMonkey

    "5. When your friend dates a woman that is absolutely terrible for him, and she's wrecking his life, it's your duty to openly hate her, and point out how evil she is." -ialsohaveadream

  6. #6

  7. #7
    Depending on how many you have to do you can always try Blancco.

    http://www.blancco.com

  8. #8
    Rear Admiral Lower Half Cubsfan's Avatar
    Join Date
    Jul 2001
    Location
    Colorado
    Posts
    2,743
    So what are you trying to hide?

    Are you trying to blank this and then sell it, or just throw it away. If you're going to throw it away, then do everything to it: zero it, magnet it, and bust it up (plust the last part will be fun).

  9. #9
    In our lab we use Darik's Boot and Nuke.
    http://dban.sourceforge.net/

    Darik's Boot and Nuke ("DBAN") is a self-contained boot floppy that securely wipes the hard disks of most computers. DBAN will automatically and completely delete the contents of any hard disk that it can detect, which makes it an appropriate utility for bulk or emergency data destruction.

    We are writing security software, so are pretty particular about our software choices. It is easy to use too.
    Find some free Comcast or Verizon on-demand movies to watch at home tonight:
    www.movie-cat.tv

  10. #10
    Rear Admiral Upper Half Maarchk's Avatar
    Join Date
    Jul 2000
    Location
    Where the east meets the west.
    Posts
    3,067
    I support the ultimate boot cd. Very useful tool..

    Oh and i must be Stupid Mike. I can't do the math...
    there are dumb people on the internet? Such as myself?
    "The girl is crafty like ice is cold."

    "I left my heart in san francisco... And my liver at Moe's Tavern."

    A real friend is one who listens to you as much as they talk to you.

  11. #11
    To the question "what am I trying to hide". I run though alot of used hard drives.. and some of those drives have... well stuff I wouldn't want to touch with a 10 Ton Missle. So I like to make sure its COMPLETELY gone before I use it. That and having items that contain illegal stuff is..well illegal. Well intentioned or not.

    I'd rather just make sure its wiped out completely (because I have reconstructed and recovered hard drives and found many a disturbing things).

  12. #12
    aka the keg killer mechmike0034's Avatar
    Join Date
    Dec 2002
    Location
    Ala-effin'-bama!
    Posts
    2,738
    Quote Originally Posted by Maarchk
    I support the ultimate boot cd. Very useful tool..

    Oh and i must be Stupid Mike. I can't do the math...
    there are dumb people on the internet? Such as myself?
    Two of my sig quotes (the one you're referencing, plus the Boss K quote) sum up the reason I fix computers.

    Keep in mind that I am not specifically pointing a finger at any individual.

    BTW, DBAN, (along with most of the other drive utilities noted above) is on the UBCD. http://www.ultimatebootcd.com
    It does a multipass DoD wipe, and I use it often.
    Last edited by mechmike0034; 02-15-2006 at 08:28 AM.
    "The price of progress is trouble." (C. F. "Boss" Kettering)
    "50% of the American public has below-average intelligence. 70% of the American public now has regular access to the Internet. Do the math." (unknown)

  13. #13
    Lieutenant Commander shocky123's Avatar
    Join Date
    Aug 2004
    Location
    Ames, Iowa
    Posts
    828
    this'll do it:

    'dd if=/dev/zero of=(path to drive) bs=4096 count=(total size of partition in bytes/4096)'

    ..try that one out, it'll "zero" it. Make sure you partition the drive to have one partition which spans the entire drive, then mount that drive to (path of drive) and use that in the above.

    oh yeah, UBCD should get you to a point where you have a /dev/zero device, I think... though dont quote me on that.

    ~Kyle
    "me awaits onslaught of estrogen fury." -CornMonkey

    "5. When your friend dates a woman that is absolutely terrible for him, and she's wrecking his life, it's your duty to openly hate her, and point out how evil she is." -ialsohaveadream

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •