The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Wiping my OS and HD.

    Discussion in 'Windows OS and Software' started by me12345, Sep 18, 2008.

  1. me12345

    me12345 Notebook Evangelist

    Reputations:
    11
    Messages:
    559
    Likes Received:
    0
    Trophy Points:
    30
    Hi, I'm selling an old laptop and I wish to securely wipe my HD. After doing some research, I decided to use Darik's Boot and Nuke, which seems to be good and is also free.

    From what I have read, generally one pass on the HD is not enough, but I can't seem to find much info on exactly how many passes needs to be done on the HD before the data is considered to be truly wiped and I can securely sell my laptop with a HD in it?

    Thank you for your help.

    P.S.

    I also have acronis drive cleaner if that is better than Darik's Boot and Nuke.
     
  2. Andy

    Andy Notebook Prophet

    Reputations:
    2,133
    Messages:
    6,399
    Likes Received:
    1
    Trophy Points:
    206
    You can also use Eraser and run a 3-pass on the folders you consider as confidential, etc.
    Then delete all the partitions using GParted.

    DBan will also work just fine.
     
  3. powerpack

    powerpack Notebook Prophet

    Reputations:
    7,101
    Messages:
    5,757
    Likes Received:
    0
    Trophy Points:
    0
    Who are you trying to secure it from? Average user one pass would work. Protect from NSA/Homeland Security? Destruction of device.

    So three passes should be fine. There was a long thread on this in the past. No one other than some with high level security clearance knows what level of retrievable data remanence may remain.

    Real world you should be fine but be aware any software based wiping is potentially problematic if for example parts of the HDD are inaccessible. This can happen when sectors go bad they are hidden from the OS.

    One wipe will prevent any standard data recovery utility from retrieving (2006 NIST Special Publication 800-88 p. 7).
     
  4. bcrab

    bcrab Notebook Enthusiast

    Reputations:
    0
    Messages:
    13
    Likes Received:
    0
    Trophy Points:
    5
    KillDisk works good too and its free.
     
  5. Pitabred

    Pitabred Linux geek con rat flail!

    Reputations:
    3,300
    Messages:
    7,115
    Likes Received:
    3
    Trophy Points:
    206
    As long as you don't do a quick format, you should be fine. The only way to recover data that has been actually overwritten (as opposed to just marked as deleted) is to use some very special equipment to examine the hard drive platters outside of the hard drive itself.

    Unless you've annoyed the NSA, you're fine. Even the state or local cops would have a very hard time recovering anything.

    My preferred method: use a Linux bootable disk (I'm sure you've played with it sometime), open up a console and type this:

    Code:
    dd if=/dev/urandom of=/dev/sda bs=1M
    That overwrites everything on the first hard drive (generally all there is in a laptop) with random data. Should take about 15-30 minutes depending on how fast your drive is (the bs argument is very important in this... otherwise you're looking at hours), and you have a completely clean disk that needs to be repartitioned and formatted before it can be used.