Quote:
|
Originally Posted by dsopscak
Is the situation an obstacle to having the systems live together?
|
You're probably long gone from here, but I don't think it will be a big problem. That drive enumeration business has become a little unpredictable. I think it's the reason we have UUIDs instead of device names in grub.conf nowadays.
Actually, Anaconda (the Fedora installer) is good about adding Windows to the GRUB menu, but it is well known to ignore existing Linux systems, even other Fedoras. But it's generally not hard to tweak grub.conf to make it boot another Linux system. Anyway, too late for that for Fedora 14.
If you have Fedora 10 booting normally again, then you can tweak Fedora 10's grub.conf to boot Fedora 14 using the
configfile menu command. If you want to try that, then open a terminal and start the GRUB shell...
At the grub> prompt, use the
find command to determine the Fedora boot partitions...
Code:
grub> find /grub/grub.conf
grub> find /boot/grub/grub.conf
Do both. One or both may produce errors that can be ignored. And one or both will produce results that will be the Fedora 10 and Fedora 14 boot partitions (or root partitions if no separate boot partitions). You have to figure out which is 10 and which is 14. It's usually not hard to do that. Anyway, now open Fedora 10's grub.conf for editing and add this at the end...
Code:
title Fedora 14
configfile (hdx,y)/grub/grub.conf
You change x & y to the drive & partition learned with the GRUB shell's
find command. Or like this if Fedora 14 does not have a separate boot partition...
Code:
title Fedora 14
configfile (hdx,y)/boot/grub/grub.conf
Choosing "Fedora 14" in the Fedora 10 menu should go to the Fedora 14 menu and then to Fedora 14.
If you don't want to go through a second menu and prefer to directly boot the Fedora 14 kernel from the Fedora 10 menu, then copy the title, root, kernel, and initrd lines for the latest kernel in the Fedora 14 grub.conf file to the Fedora 10 grub.conf. Repeat that when the Fedora 14 kernel is updated.