This will reformat or wipeout all the files of the device that is mentioned after the mkfs command.
[mitesh@Matrix ~]$ sudo mkfs.ext3 /dev/sda
Fill Hard Disk Drive with Junk Data
# Fill HDD with letter y[mitesh@Matrix ~]$ sudo yes> /dev/sda
# Fill HDD with number zero 0[mitesh@Matrix ~]$ sudo dd if=/dev/zero of=/dev/sda
# Fill HDD with random data[mitesh@Matrix ~]$ sudo dd if=/dev/urandom of=/dev/sda
# Overwrite HDD Data (Multiple Times)[mitesh@Matrix ~]$ sudo shred /dev/sda
Delete /etc Directory
The following command delete all the linux configuration files.