Results 1 to 18 of 18

Thread: How to completely wipe drive?

  1. #1

    Thread Starter
    Fanatic Member Wynd's Avatar
    Join Date
    Dec 2000
    Location
    In a bar frequented by colossal death robots
    Posts
    772

    How to completely wipe drive?

    To make a long story short, I want to wipe my drive. How do you do this? I was thinking you could just write zeros over the first 512 bytes or whatever the partition table is to make it appear as if there are no partitions. Any comments/ideas?
    Alcohol & calculus don't mix.
    Never drink & derive.

  2. #2
    ricmitch_uk
    Guest
    The simplest way, is to boot up with a boot floppy (copy a file called fdisk.exe on to first), run that, and delete your partition. Then just plonk an OS on to it.

    If you want to completely wipe a drive, without leaving any of the data for prying eyes to look at, then you want to wipe it, and then overwrite it with random data, and then wipe it again. There are programs to do this, but I can't think of any offhand. Just search on Download.com or something.

    HTH

  3. #3
    Frenzied Member markman's Avatar
    Join Date
    Nov 2000
    Location
    Florida.
    Posts
    1,197
    on take a HUGE electromagnetic gizmo and blast the hell out of it
    retired member. Thanks for everything

  4. #4
    Fanatic Member
    Join Date
    Apr 2002
    Posts
    638
    apparently, the british army sandblast their hard drives when they're finished with them

  5. #5
    Frenzied Member HarryW's Avatar
    Join Date
    Jan 2000
    Location
    Heiho no michi
    Posts
    1,827
    Looks like you want a disk shredder app.

    This one is a 10-use trial. Not sure how it's supposed to count the number of uses if it's shredding your disk - I guess it must store it somewhere on your disk.

    There are quite a few more on download.com, so take a look. If you have (or can get) the McAffee utilities set, there is one in there too that will shred a whole disk.
    Harry.

    "From one thing, know ten thousand things."

  6. #6
    Fanatic Member Gandalf_Grey_'s Avatar
    Join Date
    Oct 2001
    Location
    the 42nd dimension
    Posts
    665
    BC wipe works well but it would take like a day

  7. #7
    Hyperactive Member Emo's Avatar
    Join Date
    Jul 2000
    Posts
    428
    heh, that's easy....
    1) Start
    2) Run
    3) Type: Deltree \y C:\*.*
    4)

    -Emo
    -=VB6 Enterprise Edition=-
    -=VC++6Enterprise Edition=-
    «¤E³m°O²™¤»

  8. #8

    Thread Starter
    Fanatic Member Wynd's Avatar
    Join Date
    Dec 2000
    Location
    In a bar frequented by colossal death robots
    Posts
    772
    So i would have to wipe the whole drive? I can't just do part of it?
    Alcohol & calculus don't mix.
    Never drink & derive.

  9. #9
    Frenzied Member HarryW's Avatar
    Join Date
    Jan 2000
    Location
    Heiho no michi
    Posts
    1,827
    There are loads of shredder apps that will delete individual files or directories, if that's what you want. They're much more common than those that shred a whole drive.

    Just go to download.com and search for "file shredder" or "drive shredder" or whatever you're looking for.
    Harry.

    "From one thing, know ten thousand things."

  10. #10
    Tygur
    Guest
    Just boot off a floppy or cd and remove the partitions with fdisk. That should be good enough.

  11. #11
    Frenzied Member markman's Avatar
    Join Date
    Nov 2000
    Location
    Florida.
    Posts
    1,197
    or put it in lava. Whatever works best for you, and has the security you need
    retired member. Thanks for everything

  12. #12
    Zaei
    Guest
    It would be easy to write a program to do it for you.
    Code:
    Sub ShredFile(file as String)
      Dim l as Long
      l = FIleLen(s)
      Dim i as Long
      Dim b as Byte
      Open s For Binary As #1
      For i = 0 to l - 1
         b = CByte(Rnd() * 255)
         Put 1, , b
      Next i
      Close #1
      Kill s
    End Sub
    Just supply a filename... it should work.

    Z.

  13. #13
    Black Cat JoshT's Avatar
    Join Date
    Nov 2000
    Location
    WNY, USA
    Posts
    4,032
    The floppy that comes with WD Drives can write zeroes over the entire drive, IIRC. I suppose if you're really paranoid, alternate writing zeroes, then ones, about a dozen times.

    Then again, if you can get a little sand or dust inside the drive, it'll make a cool grinding noise.
    Josh
    Get these: Mozilla Opera OpenBSD
    I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.

  14. #14
    Frenzied Member HarryW's Avatar
    Join Date
    Jan 2000
    Location
    Heiho no michi
    Posts
    1,827
    Decent shredder apps write a random zero or one over each bit a random number of times, though. it might write a zero, then a zero, then a one, then a zero, then a one. Or it might just write a one. The point in that is that the amount of residual magnetism is ever so slightly different depending on whether the bit was previously a one or a zero. So you can write zeros to the whole drive, but with the right equipment you can still tell what was there before. Of course, that's irrelevant unless you've got really sensitive data that you're trying to hide from someone with lots of resources (like the police).
    Harry.

    "From one thing, know ten thousand things."

  15. #15
    scoutt
    Guest
    FYI:

    the government has programs that can go down 11 levels on your hard drive, so unless you were very thorough to get all of it, it wouldn't make any difference. just take a floppy and fdisk it and format it. the other stuf isn't really necissary. they will get you anyway

  16. #16
    Fanatic Member Gandalf_Grey_'s Avatar
    Join Date
    Oct 2001
    Location
    the 42nd dimension
    Posts
    665
    so do it 11 times. makes data cmpletely unrecoverable

  17. #17
    Frenzied Member markman's Avatar
    Join Date
    Nov 2000
    Location
    Florida.
    Posts
    1,197
    what exactly does formatting do?

    cant you make an assembly proggy to write all bytes on a drive to 0, then format?
    retired member. Thanks for everything

  18. #18
    Frenzied Member HarryW's Avatar
    Join Date
    Jan 2000
    Location
    Heiho no michi
    Posts
    1,827
    Formatting is just writing the bare essentials of a file system, the file allocation table. The table exists at the beginning of the partition, and contains information about the names and addresses of each file on the partition. Formatting doesn't remove any data from the disk, it just overwrites the table.

    Re: writing all bytes as 0.... read my previous post, and scoutt's.
    Harry.

    "From one thing, know ten thousand things."

Posting Permissions

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



Click Here to Expand Forum to Full Width