Thinking maybe I should wipe the drives individually with Partition Manager; just something NOT Windoze.
What I am doing, if I want to wipe drives:
- download grml
https://grml.org/- create a bootable USB stick from the image (or a CD/DVD)
- boot grml
- once grml has been booted, check for your drives
cat /proc/partitions
this gives you a list of the installed drives, in most cases /dev/sda or /dev/hda is your first hard disk drive
- be careful with the next commands!
- if you want to wipe the first hard disk drive, e.g. /dev/sda, then do this:
dd if=/dev/zero of=/dev/sda bs=1024k count=1000
this will write zeros from the very first bit of the disk drive up to one gigabyte (nearly, 1000 instead of 1024)
After this procedures, your disk is as good as new.
If you want to wipe the complete disk, then do this:
dd if=/dev/zero of=/dev/sda
But this may take up to several hours to finish.
This is useful, if you are going to sell storage devices and want to wipe them completely.
The dd command is one of the most reliable tools in this respect I'm knowing.
dd is also used for forensic stuff if you need to create a copy image of a storage device.