To wipe a drive of all content, go to a terminal,
su to root, and issue the following command:
Code:
dd if=/dev/zero of=/dev/sda bs=512 count=1
You'll need to replace /dev/sda with your actual device name such as /dev/hda.
Using the dd command above will write zeros to the entire drive giving you a totally fresh start.
If needed, you can use the
fdisk -l command to determine your device name:
A better option is to boot from a liveCD and follow the same procedure but you won't have to su to root using that method.