How do you remove the grb (grub 1) mbr from inside Suse Linux 12

0

How do you remove the grb (grub 1) mbr from inside Suse Linux 12? I have tried this as stated numerous places on the internet (sda is my one and only drive), however it just says 0 byte written and has no affect

dd if=/dev/null of=/dev/sda bs=446 count=1

John Smith

Posted 2013-10-02T15:54:14.717

Reputation:

Answers

1

try this instead

dd if=/dev/zero of=/dev/sda bs=446 count=1

dev null produces no data, just an EOF. /dev/zero produces all zeroes.

Woodrow Douglass

Posted 2013-10-02T15:54:14.717

Reputation: 178