![]() | 1 | initial version |
You could reinstall grub by using either a Fedora 19 DVD or a netinstall image.
When the CD/DVD boots, choose Troubleshooting ---> Rescue a Fedora Installation from the menus presented.
Once the system boots, the installation image should automatically mount your installation under /mnt/sysimage
. Once that happens, all you have to do (hopefully) is
grub2-mkconfig -o /boot/grub2/grub.cfg grub2-install /dev/sda
This will install GRUB to master boot record. Also, ideally, when you run the first command, in the output, you should also see Windows 7 presented.
Hope this helps.
![]() | 2 | corrected the answer |
You could reinstall grub by using either a Fedora 19 DVD or a netinstall image.
When the CD/DVD boots, choose Troubleshooting ---> Rescue a Fedora Installation from the menus presented.
Once the system boots, the installation image should automatically mount your installation under /mnt/sysimage
. Once that happens, all you have to do (hopefully) is
chroot /mnt/sysimage grub2-mkconfig -o /boot/grub2/grub.cfg grub2-install /dev/sda
This will install GRUB to master boot record. Also, ideally, when you run the first command, in the output, you should also see Windows 7 presented.
Hope this helps.