On 30 September 2011 15:29, Ephraim Batambuze <[email protected]> wrote: > > > hey guys, am getting a grub error 15 after a fresh installation of Linux > mint and i cant find the /boot/grub/menu.lst when i boot from the live disk. > any solutions??
You probably have grub2 but it is not installed into the master boot record. (FYI menu.lst is used by grub legacy. It is not used by grub2). In live Cd open a terminal. Assuming /boot is in sda7, sudo mkdir /media/root sudo mount /dev/sda7 /media/root sudo grub-install --recheck --root-directory=/media/root /dev/sda sudo umount /media/root sudo update-grub That should do it. -- Hari _______________________________________________ The Uganda Linux User Group: http://linux.or.ug Send messages to this mailing list by addressing e-mails to: [email protected] Mailing list archives: http://www.mail-archive.com/[email protected]/ Mailing list settings: http://kym.net/mailman/listinfo/lug To unsubscribe: http://kym.net/mailman/options/lug The Uganda LUG mailing list is generously hosted by INFOCOM: http://www.infocom.co.ug/ The above comments and data are owned by whoever posted them (including attachments if any). The mailing list host is not responsible for them in any way.
