I did the command
sudo wipe /dev/sdb
where /dev/sdb
is my 1TB HDD and I got a "command not found" message. How would I be able to prepare the drive for new OS? Wipe it, I mean.
Thanks
I did the command
sudo wipe /dev/sdb
where /dev/sdb
is my 1TB HDD and I got a "command not found" message. How would I be able to prepare the drive for new OS? Wipe it, I mean.
Thanks
Try Gparted Partition Editor
from System-->Administration to format your external HDD.Please note that,to format a partition it must be unmounted.
Actually wipe is not pre-installed application and you have to install it manually.
open your terminal and type as
sudo apt-get install wipe
then run the command again.
This will wipe all partitions, MBR, and data. Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
dd if=/dev/zero of=/dev/sdx bs=1M
Note: You need to replace x with the device name you want to overwrite. Also make sure that you really want to do this, because it might not be reversible. So make sure that you have a backup of anything that you want off the drive before attempting this.