4

What is the primary difference between quick format and format. Does a format write 0's before writing the inodes/allocation table and a quick format just write the allocation table/inode without writing 0's? Also, is secure erase the same as format?

2
  • 2
    Who downvotes questions like this? Jeez.
    – danielcg
    Commented Feb 11, 2013 at 6:10
  • why don't you google...there are tons of articles about this! Commented Feb 11, 2013 at 8:08

2 Answers 2

3

A quick format just lays out the partitioning structure for the disk, while a format will typically overwrite the whole disk.Thus a quick format is not as secure as a full format. That said, a full format is not a secure as doing a proper full disk wipe. (For a start, a full format may not always be programmed to overwrite all the bits on the partition, and will miss some parts of the disk alltogether - for example boot loader and bad sectors)

2
  • I've heard it said that a full-format also checks for bad sectors in the disk. Is this correct?
    – Simon E.
    Commented Apr 24, 2020 at 1:10
  • @SimonEast it should, yes - and mark them bad.
    – davidgo
    Commented Apr 24, 2020 at 1:55
0

Disks use a thing called a journal to find out where your data is on the physical disk. A quick format deletes that, but you can still get the data back if you read all of it and process it. (which is very time consuming)

A regular format writes over everything on the disk, irreversibly deleting everything. (well technically with some expensive equipment you may be able to get some data back, but that's besides the point)

1
  • 2
    @dnanielcg25 This is almost correct (re the expensive equipment bit) - There won't be any appreciable difference between expensive equipment and just using the correct software and procedure, as disks are way to dense to take advantage of tunneling microscopy, and have been for quite some time. (Also, a regular format does not overwrite parts of the disk outside the partition, so the Master Boot Record and partition table won't generally be affected)
    – davidgo
    Commented Feb 11, 2013 at 7:05

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .