F13 Installer – Oh what a wonderful mess

Written by James McDonald

May 30, 2010

So Ubuntu 10.04 is a thing of beauty and typically I use it above other distributions…. However my spiritual Linux home is Redhat/Fedora I started out with it and even bought the Sybex RHCE book. I even think that the Redhat style of system-config-blah provides a better way of admining a box than the Debian style of randomizing the name of all the config utils.

So every new release of Fedora I install it to see how it’s going. Which brings us to F13.

I have two hard disks and in my BIOS they are listed as follows

200GB /dev/sda
500GB /dev/sdb

Ubuntu detects them as the BIOS lists them.

Anaconda, The Fedora installer suffers from inverted myopia it can’t seem to get them straight no matter what options I chose. So F13 installs the boot loader in the wrong place and on restart gives me a GRUB> prompt nothing more….

Don’t get me wrong Fedora 13 installs fine it’s disk detection routine is retarded.

I finally got it to install on the second partition of /dev/sdb but still I couldn’t boot it. The Ubuntu GRUB 2 boot loader was in the root of /dev/sda and the Fedora 13 installer just couldn’t figure what was where in order to get me a bootable Fedora installation…

However once I booted into the Ubuntu install on /dev/sda I then ran

sudo update-grub2

and amazingly it detected the Fedora install and added it to the GRUB 2 boot loader…

This allows a successful boot of the Fedora install.

But at every kernel upgrade (which happens fairly regularly) you then have to boot to Ubuntu and get it to add the latest kernel version. Who wants to do that?

OK so here is the answer as far as my setup was concerned:

Install the Fedora grub to the same partition as it’s root dir:

grub-install /dev/sdb2

Open the Ubuntu version of /etc/grub.d/40_custom and add:

#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.

# add this bit the above is what is there by default
echo "Chain Load GRUB 1 Fedora 13 from Ubuntu GRUB 2"
cat << EOF
menuentry "Chainload Fedora Grub" {
set root=(hd1,2)
chainloader (hd1,2)+1
}
EOF
}
EOF

So this worked but because Anaconda is retarded it thinks that /dev/sdb is actually hd0 which is a total lie. So you also have to go into the /boot/grub/device.map file in Fedora and get it to think straight by adding all the harddisks as they really are thusly:

# this device map was generated by anaconda
(hd0)	  /dev/sda
(hd1)     /dev/sdb

Which is far different from the confused pustule that Fedora serves up by default. Since when is sdb hd0.

# this device map was generated by anaconda
(hd0)	/dev/sdb

If the peoples creating the distributions are scratching their heads wondering why Ubuntu has gained supremacy, perhaps they should look at these sorts of duh duh oops sort of things.

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Network speed test host to host

On Ubuntu / Debian apt-get install iperf3 On Windows download it from https://iperf.fr/iperf-download.php#windows Make...