LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-08-2010, 09:27 PM   #1
ciao303
Member
 
Registered: Jul 2010
Posts: 69

Rep: Reputation: 15
GParted Question


Im trying to exterminate any and every softwares'existence and its trace of existence from my HDD

so I burnt the GParted gparted-live-0.6.1-5.iso into a DVD (sourced from softpedia)

the question is, whats next?
 
Old 08-08-2010, 09:42 PM   #2
AlucardZero
Senior Member
 
Registered: May 2006
Location: USA
Distribution: Debian
Posts: 4,824

Rep: Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615
boot from it?

Within GParted you can delete partitions, but I don't believe you can actually wipe (overwrite) data. For that, you need a DBAN CD, or any Linux live CD and the 'shred' or 'dd' command.
 
Old 08-09-2010, 12:32 AM   #3
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,631

Rep: Reputation: Disabled
PartedMagick can be a better choice for that. It should wipe out data which should almost be irrecoverable for a normal user.

Last edited by linuxlover.chaitanya; 08-09-2010 at 12:32 AM. Reason: typo
 
Old 08-09-2010, 01:22 AM   #4
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Quote:
Originally Posted by ciao303 View Post
the question is, whats next?
http://gparted.sourceforge.net/docs/...C/gparted.html
and
http://gparted.sourceforge.net/larry...es/gparted.htm
and
http://gparted.sourceforge.net/faq.php

Gparted and PartedMagic both *manage* harddisk partitions not any particular software, AFAIK.
 
Old 08-09-2010, 01:36 AM   #5
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,631

Rep: Reputation: Disabled
PartedMagick is not a software but a compilation of different softwares for certain usages. PartedMagick in itself is not a software but a specialized operating system for disk management that can include disk partitioning, cloning, data backup, recovery and data shreding among others. It comes a live cd with small desktop environment.
 
Old 08-09-2010, 01:48 AM   #6
ciao303
Member
 
Registered: Jul 2010
Posts: 69

Original Poster
Rep: Reputation: 15
ok basically what I wanna do is forget all whats in the HDD, lay a mushroom cloud on that sucker and start anew....as if the HDD is brand spankin new...how do I do this?
 
Old 08-09-2010, 01:52 AM   #7
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Quote:
Originally Posted by ciao303 View Post
ok basically what I wanna do is forget all whats in the HDD, lay a mushroom cloud on that sucker and start anew....as if the HDD is brand spankin new...how do I do this?
Read the links in Post number 4.
 
Old 08-09-2010, 02:04 AM   #8
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,631

Rep: Reputation: Disabled
Quote:
Originally Posted by ciao303 View Post
ok basically what I wanna do is forget all whats in the HDD, lay a mushroom cloud on that sucker and start anew....as if the HDD is brand spankin new...how do I do this?
http://partedmagic.com/

Download the image. Burn to disk. Boot from disk. Erase your data. That is it. Your drive is all as new. Without any data and completely formatted.
PS: Shredding the data could make it irrecoverable. Make sure you know what data you are deleting or have a backup of it.
 
Old 08-09-2010, 03:15 AM   #9
crts
Senior Member
 
Registered: Jan 2010
Posts: 2,020

Rep: Reputation: 757Reputation: 757Reputation: 757Reputation: 757Reputation: 757Reputation: 757Reputation: 757
Quote:
Originally Posted by ciao303 View Post
ok basically what I wanna do is forget all whats in the HDD, lay a mushroom cloud on that sucker and start anew....as if the HDD is brand spankin new...how do I do this?
Hi,

ok here is how I "nuke" my disks. Suppose, the disk you want wiped is /dev/sdb. Boot from any liveCD and then just issue:
Code:
dd if=/dev/zero of=/dev/sdb bs=1M
dd if=/dev/urandom of=/dev/sdb bs=1M
#dd if=/dev/zero of=/dev/sdb bs=1M # This step is optional
Notice the third optional step. If you execute it or not depends on what you want to do further with that disk. If you want to encrypt it then do not perform it. Also make pay attention to the 'bs' option. If you choose the byte-size number too small the command will take longer to finish.
After the commands above have terminated you will have to recreate the disk label and partition table.

Be extremely careful with those commands. Make sure that there is no important data on the device. Better double or triple check that because after the commands finish no data will be recoverable.
 
Old 08-09-2010, 10:26 PM   #10
ciao303
Member
 
Registered: Jul 2010
Posts: 69

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by crts View Post
Hi,

ok here is how I "nuke" my disks. Suppose, the disk you want wiped is /dev/sdb. Boot from any liveCD and then just issue:
Code:
dd if=/dev/zero of=/dev/sdb bs=1M
dd if=/dev/urandom of=/dev/sdb bs=1M
#dd if=/dev/zero of=/dev/sdb bs=1M # This step is optional
Notice the third optional step. If you execute it or not depends on what you want to do further with that disk. If you want to encrypt it then do not perform it. Also make pay attention to the 'bs' option. If you choose the byte-size number too small the command will take longer to finish.
After the commands above have terminated you will have to recreate the disk label and partition table.

Be extremely careful with those commands. Make sure that there is no important data on the device. Better double or triple check that because after the commands finish no data will be recoverable.
at the 'bs' option how big is a number should be to consider it minimally tolerable?
 
Old 08-09-2010, 11:03 PM   #11
crts
Senior Member
 
Registered: Jan 2010
Posts: 2,020

Rep: Reputation: 757Reputation: 757Reputation: 757Reputation: 757Reputation: 757Reputation: 757Reputation: 757
Quote:
Originally Posted by ciao303 View Post
at the 'bs' option how big is a number should be to consider it minimally tolerable?
Hi,

a while ago I have been experimenting with that number. From what I have observed, from 512 (Bytes) onwards there was no noticeable change in performance. But this might depend on the architecture. You can try to find that lower boundary for your system. 512 is a good starting point.
Some stats for my system:
Code:
copying from /dev/urandom:
bs     average speed
64     4.3 MB/s
128    4.9 MB/s
512    5.6 MB/s
4096   5.8 MB/s

copying from /dev/zero:
bs     average speed
64     29.1 MB/s
128    40.8 MB/s
512    37.0 MB/s
4096   37.4 MB/s
The commands ran for approx. 30 seconds. As a rule of thumb, you might want to choose a bigger number if you have more data to copy. E. g. abort the command with bs set to 128 after 2 seconds and you will get a speed somewhere near 60 MB/s. This drops drastically if you let the command run for a minute. Maybe you can post some of your stats when you run the command.
Hope this helps.

[EDIT]:
Since we are talking about erasing HDD of several GB I recommend using a value of at least 4096. I choose 1M to be on the safe side.

Last edited by crts; 08-09-2010 at 11:06 PM.
 
Old 08-10-2010, 12:49 AM   #12
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,631

Rep: Reputation: Disabled
Quote:
Originally Posted by Sms2everyone View Post
Thanks to Everyone..
Nice useful Information,it really helped me a lot,
I request every member that..
Please keep updating this site with there knowledge as Now i am regular visitor of this site.
If you have nothing informational to share, will you please stop spamming the threads with this signature post of yours.
 
Old 08-10-2010, 12:53 AM   #13
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Quote:
Originally Posted by linuxlover.chaitanya View Post
If you have nothing informational to share, will you please stop spamming the threads with this signature post of yours.
Already reported him, awaiting actions from the mods to block this spammer.
 
Old 08-10-2010, 12:59 AM   #14
linuxlover.chaitanya
Senior Member
 
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,631

Rep: Reputation: Disabled
Yup. Me too reported couple of his posts. There are bulk of those. Impossible to report all. Is there a way to directly contact a moderator to report such spam?
 
Old 08-10-2010, 01:04 AM   #15
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Quote:
Originally Posted by linuxlover.chaitanya View Post
Yup. Me too reported couple of his posts. There are bulk of those. Impossible to report all. Is there a way to directly contact a moderator to report such spam?
You can ask the moderator to look here http://www.linuxquestions.org/questi...eryone-536776/ in the statistics TAB and delete all his posts !!
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
help using gparted (embarassing question) NeXuS_2006 Linux - General 6 03-10-2009 10:28 AM
Gparted jus71n742 Linux - Hardware 6 11-19-2008 12:39 AM
gparted question radiodee1 Debian 3 05-26-2007 08:23 AM
gparted question toolkit Ubuntu 1 02-05-2007 12:47 AM
After using Gparted tombiz Ubuntu 5 07-13-2006 04:38 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:53 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration