Quick Format Vs Normal Format

G

Gabriel Knight

Hello all, Ive had to do a format of an 80Gig HDD in Win Xp and noticed a
"quick format" option, besides being faster what is the cons and pros of a
quick format or should one always format normaly?

Thanks
GK
 
J

Jonny

A quick format basically just resets the filesystem table to zero, nothing
on it except the original possible file locations.
A format checks the usability of the partition area for file use. Creates a
new filesystem table.
http://support.microsoft.com/kb/302686/en-us
http://support.microsoft.com/kb/301340/en-us

Situations where I personally would never use quick format: Suspect hard
drive to hold data, old hard drive, and a hard drive that was moved from
another PC. In addition, I would personally use a zero write utility before
partitioning and formatting in those situations.
 
P

Paul Johnson

Please avoid quoting in backwards order.
http://wiki.ursine.ca/Best_Online_Quoting_Practices
Situations where I personally would never use quick format: Suspect hard
drive to hold data, old hard drive, and a hard drive that was moved from
another PC.

A normal format is probably not thorough enough for data disposal, either.
In addition, I would personally use a zero write utility before
partitioning and formatting in those situations.

The only one I would trust to do what it claims is dd that comes with
Knoppix. Being open source, dd has had public security review that
most "zero write utilities" never get. This is important: You do want the
utilities you use to dispose of data to actually do what they claim, right?

Boot to Knoppix, open a Konsole, then type sudo -s. This should cause the
prompt to change from $ to #. Then type dd if=/dev/zero of=/dev/hda (for
the first PATA hard drive, sda for the first SCSI or SATA hard drive).
Though if you're going to go that route, you might want to do somethign a
little bit more secure than writing zero to every bit on the device: If
you change /dev/zero to /dev/urandom, this will write random data to the
drive instead of zeros. For best results, do this five or six times
with /dev/urandom to ensure someone with knowledge of data forensics can't
recover anything.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top