On 2010-07-31 14:06, montana suse user wrote:
>
> I know, I know, this is the openSUSE forum! I have 11.3 working really
> good. I have a 1 tb drive, partitioned into:
>
> Root for Suse
> Root for Fedora
> Swap for both
> Home for Suse
> Home for Fedora
>
> The two Suse partitions are, as I said, installed and working well.
>
> I want to install Fedora in the two partitions reserved for it. I know
> there are those here who also use Fedora. Can you help me do this
> without screwing up my openSUSE install?
I’ll give you a general method. Two, in fact.
Choose one install to be “master”, meaning that this one will have grub on the MBR.
Alternatively, have a generic MBR, have a primary partition marked as bootable, and have grub
installed on that partition (which has to be the one holding /boot).
Now, for the second linux install, tell its installer to install grub to its root (or /boot if
separate), never to the mbr.
If available, this root (/) or /boot can be another spare primary partition, and marked bootable
instead of the previous one. This is optional, would make the second install the master one,
reversable any time.
Now, have the first grub point to the second grub (you will have to find the exact hd numbers for
yours, of course):
title Bombadil – (via configfile in /dev/sda1)
root (hd0,0)
configfile /boot/grub/menu.lst
and the second grub point to the first one:
title Elessar x64 – (via configfile in /dev/sda3)
root (hd0,2)
configfile /boot/grub/menu.lst
This will allow you to start the second grub menu from the first one.
If you are using two primary partition marking bootable one or another, then you can change that
mark this way:
first linux:
title Bombadil – via chainload - changes active boot to /dev/sda1
rootnoverify (hd0,0)
makeactive
chainloader +1
second linux
title Elessar – via chainload - changes active boot to /dev/sda3
rootnoverify (hd0,2)
makeactive
chainloader +1
This system makes “permanent” the change, so that when you boot the computer you always get grub
number 1, or grub number 2, till you change it again by changing the bootable mark. This system can
be used for three installs - perhaps four if the extended partition can be used this way, I don’t know.
The advantage of these two systems is that each install manages completely its own grub without
interferences. It is really simple and easy to mantain. You can have as many linuxes as you like
(with the first one).
–
Cheers / Saludos,
Carlos E. R.
(from 11.2 x86_64 “Emerald” GM (Elessar))