Your command did exactly as you intended. Your system erased all data off of your hard drive, including your boot sector and partition table. Due to the nature of secure erase, there is zero chance of recovery. In other words, you now have a fresh hard drive with absolutely no data stored on it.
If you want to boot from this drive again, you'll need to create a new boot sector. The easiest way to do this is to format the drive and install an operating system on it. See How do I install Ubuntu? for instructions as to how to do this.
If you'd rather just use this drive for data storage, format it from Ubuntu and create a partition table. Tools like the built-in Disks utility or gparted
would be the easiest ways to achieve this goal.
As I think you're also confused, here's what happens with MBR-based systems.
The first sector of the hard drive (hex offset 0x000
to 0x1ff
) contains what's called the Master Boot Record. This contains BIOS instructions, as well as CPU instructions for how to handle and start the computer.
When your BIOS complains about being unable to read the boot sector, it means that your computer failed to find executable code (or encountered an error while executing code), or that the MBR was malformed. As you erased your MBR, it would obviously have no executable code or record of drive information. Therefore, this must be recreated through formatting the drive.