I have 2 questions

  1. Can we know weather a Hard Drive has done Low Level format or not. Somehow using a tool ?
  2. How to do Low Level Format (Hard Format) for a Laptop HardDrive
link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

You can't really do a 'proper' oldschool low level format with modern drives - they require specialised software, and it only really needs to be done once, at the place its made.

You can however wipe the drive with dban - with modern drives a single pass is often enough, DOD recommends 7 passes, and the guttmann method basically runs every possible wiping algorithm for pretty much every sort of drive ever made.

Depends on how much time you're willing to spend.

more info here if you are into the science of it.

link|improve this answer
feedback

With Low-Level you mean to overwrite the drive with zeros or random data?

For Question 2: You can do this with every Linux Live CD and the dd command. Something like

$ dd if=/dev/zero of=/dev/sdX

should do the trick. Alternatively you can use a specialised distribution like DBAN.

link|improve this answer
If xe means that, xe has the wrong idea of what a low-level format actually is. ☺ – JdeBP Jul 8 '11 at 16:30
feedback

You can check content of the hard drive with hexdump. Actual destroying data with dd mentioned above or with shred.

link|improve this answer
feedback

If you want data security, buy an industrial shredder. All sorts of interesting forensic techniques can be applied to hard drives of all types to retrieve data you "thought" was gone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.