<p>You wrote to nowhere with the following:</p><p>grub-install /dev/sda0<br></p><p>sda0 does not exist. Numbering starts from 1 for Linux device nodes, unlike the bootloader. To not specify a number can mean various things to various programs. For disk utilities, it denotes the entire disk regardless of partitions. For GRUB, it means MBR. Thus:<br>
</p><p>grub-install /dev/sda</p><p>To inject the MBR. Some complex multi-boot setups may need:</p><p>grub-install /dev/sdaN</p><p>to inject /boot to /dev/sdaN where N is a partition number from 1 onwards, but I personally favour just one unified bootloader on one disk (MBR). Whichever disk has the first boot priority will be hd0 to GRUB. For Windows the standard lines are:</p>
<p>title Windows<br>rootnoverify (hd0,0)<br>makeactive<br>chainloader +1<br></p><p>Which denotes Windows resident on the first boot device, first partition.</p>