I have been trying to wipe some hard drives from old computers at work. The way I have been going about it is using a Ubuntu 14.04.2 live USB, opening a terminal, running the command "sudo fdisk -l" to find info on the hard drive, and then "sudo dd if=/dev/zero | pv | of=/dev/". In this case the disk is at /dev/sda. It worked on the first computer I did this to but the second one isn't working. It doesn't give me any errors, it just doesn't zero the drive. When I "cd /dev/sda" it says "bash: cd: sda: Not a directory".
If someone could explain to me where I have gone wrong that would be greatly appreciated :).