Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
User Journal

Journal JakartaDean's Journal: Erase disk / partition table

In linux just use dd to write 512 zeros to /dev/hda (or /dev/sda or whatever the base drive is) for example

dd bs=1 count=512 if=/dev/zero of=/dev/hda

That will wipe the boot block clean, then you can use it like a brand new drive.

Or if you want, just zero out the partition table using a seek=446 and a count=64 instead of the count=512

Thanks PalmKiller

And it should be the law: If you use the word `paradigm' without knowing what the dictionary says it means, you go to jail. No exceptions. -- David Jones

Working...