1

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

kiri
  • 28,246
  • 16
  • 81
  • 118

3 Answers3

0

Try Gparted Partition Editor from System-->Administration to format your external HDD.Please note that,to format a partition it must be unmounted.

Avinash Raj
  • 78,556
0

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.

Raja G
  • 102,391
  • 106
  • 255
  • 328
0

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.

Mitch
  • 107,631