Results 1 to 6 of 6
hi All,
What's the best complete delete program that I can use easily? I am considering selling my external hard drive but I want to run something over at least ...
- 05-26-2009 #1
[SOLVED] Complete Delete
hi All,
What's the best complete delete program that I can use easily? I am considering selling my external hard drive but I want to run something over at least twice to ensure that the 11110000000000 looks like 010101000010001
I don't want the typical delete which is just ./ in place of the first character. Thanks all!
Bodhi 1.3 & Bodhi 1.4 using E17
Dell Studio 17, Intel Graphics card, 4 gigs of RAM, E17
"The beauty in life can only be found by moving past the materialism which defines human nature and into the higher realm of thought and knowledge"
- 05-26-2009 #2forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,099
Check out DBAN to see if it might work for your needs:
Darik's Boot And Nuke | Hard Drive Disk Wipeoz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 05-26-2009 #3
There are two methods I use, both of them are done from a second distro on a second hard drive; a livecd will do just fine. The commands are 'shred -zv /dev/hda', which will fill the drive with random data a total of 25 times and doing one last pass to write zeros over it. The second command is a little more complex:
This will cause dd to fill the drive to the maximum with random data a total of four times. You can do 'dd if=/dev/zero of=/dev/hda' afterwards to zero the drive if you'd like.Code:for i in 1 2 3 4; do dd if=/dev/urandom of=/dev/hda done
While shred may pass 25 times over the hard drive only about 4 of those passes are truly random, so for me the only real benefit of shred is that it's more verbose. Personally, however, I tend to prefer good old dd. Don't forget to replace /dev/hda with your correct drive of course.
- 05-26-2009 #4Linux Guru
- Join Date
- Nov 2007
- Posts
- 1,695
Something to consider...
Typically, dd with a single pass will be fine - you can source /dev/zero for a faster wipe if you don't care that drive will "look" like it's been wiped.
You can also use the link above to find out more about cleaning the "G list" if you're really thorough.
- 05-26-2009 #5
thanks for the info everyone. I'm going to go ahead and use dd to all 0's, I don't care if it looks wiped, just want everything to be gone so whoever I sell to has no chance of getting my personal files.
Bodhi 1.3 & Bodhi 1.4 using E17
Dell Studio 17, Intel Graphics card, 4 gigs of RAM, E17
"The beauty in life can only be found by moving past the materialism which defines human nature and into the higher realm of thought and knowledge"
- 05-26-2009 #6Linux Guru
- Join Date
- Nov 2004
- Posts
- 6,110
I'd agree with HROAdmin on this. In a past life however I recommended DBAN to my company who were using an unreliable old method of blanking discs. That's unreliable as in it didn't even attempt a wipe half the time. Anyway, after sneaking DBAN in to get the job done it caught on and is now the standard approved method for the whole enterprise.
I'd bet my lunch money that no one would verify that story, brother gets no thanks at all haha.


