GRUB

From Gentoo Wiki
Jump to: navigation, search
IconInformation.png
This article is a stub. You can help Gentoo Wiki by expanding it.

GRUB (GRand Unified Bootloader) is the default bootloader on Gentoo. This article discusses sys-boot/grub:0 (slot zero) also known as "Grub Legacy". Version 2, now available in the testing tree, is completely reworked and fundamentally a different bootloader — see GRUB2.

Contents

Installation

Install grub with:

root # emerge --ask sys-boot/grub:0

Specifying slot 0 will make sure grub:2 will not get installed on world updates, unless you specifically install it.

USE flags

→ Information about USE flags
USE flag Default Recommended Description
custom-cflags No No Build with user-specified CFLAGS (unsupported)
ncurses Yes Yes Adds ncurses support (console display library)
netboot No Enables network booting
static No  !!do not set this during bootstrap!! Causes binaries to be statically linked instead of dynamically

Things you may want to consider when using grub

When grub is booting, the numbering of the harddisks is the one from BIOS. This has to go into grub.conf.

Instead of installing grub in the MBR, you may want to use mbr.bin from the syslinux package. This is self contained and boots the partition, which is activated. Grub then goes into the activated partition.

Because grub, when booting, gets his information from the bios, it is able to chainload things, even if the running linux can't see them. One example is a bios supported software raid. When the physical drives are set up as 2 logical drives, the second logical drive starts in the middle of the physical drives. Without using or support of dmraid for this, linux does not see the second logical drive. But grub can chainload windows on it.

If installing windows and linux on a computer with two drives, it may be desirable to install each OS on one of the disks. Before installing, change the boot order in the bios. After installation, you make the windows disk the second disk and use grub to chainload it. This way, by reinstalling windows, the MBR of the first disk won't get affected and if grub can't boot, you can still boot windows by changing the boot order in the bios.

If you chainload windows with grub, you have to give grub the active partition of windows. This is not always the same as the partition, which windows labels the startpartition.

Example of installing grub on an USB harddisk

The key to understand grub is to remember, in what environment grub is running.
Suppose you have 3 internal sata disk. Your gentoo is running on them and you want to install grub now on an external USB hard disk to boot a version of gentoo, which is installed on the second partition of the USB disk.
The linux system has the following device names:

/dev/sda, /dev/sdb /dev/sdc - internal drives
/dev/sdd - USB disk

The configuration of grub, which he reads while booting, is stored in /boot/grub/grub.conf. menu.lst in the same directory is a symlink to grub.conf.
The kernel and the linux system of the USB drive is installed in /dev/sdd2. So you would edit /mnt/sdd2/boot/grub/grub.conf, if you mounted the USB partition on /mnt/sdd2.
But when grub boots from the USB disk, for him it is the first harddisk.
You would write in grub.conf

default 0
timeout 10

title gentoo USB
root (hd0,1)
kernel /boot/kernel-3.4.9 rootwait root=/dev/sdd2

In contrast, the kernel sees the USB disk as /dev/sdd, the root= kernel parameter has to contain /dev/sdd2.
Sidenote: rootwait is given, so that the kernel waits until the USB disk is ready
The same applies for the installation of grub. Here you give grub the names, under which linux sees it now. First you chroot into /mnt/sdd2. You fire up grub, give him the root of the USB linux with

root (hd3,1)

and then tell him to install on the MBR of the USB disk with

setup (hd3)

Consequence: if you want to boot the USB disk, regardless of how many disks are installed, you have to use an initramfs or something else.

If the root= parameter doesn't match the actual configuration, you are not lost. You can edit the lines before booting. How this can be done, is explained in Knowledge Base:Adjusting GRUB settings for a single boot session


To get the USB disk boot without initramfs regardless of the number of installed disks, you can use a GPT partition table and the root=PARTUUID= kernel parameter as explained in this external link: Mounting root partition by UUID (no initrd needed)


Since kernel 3.8 and newer it is possible to use MBR 32-bit UUID, so you can use a MBR partition table as well.

In this case PARTUUID refer to an MBR partition using the format SSSSSSSS-PP, where SSSSSSSS is a zero-filled hex representation of the 32-bit "NT disk signature", and PP is a zero-filled hex representation of the 1-based partition number.

To get "NT disk signature" you may use fdisk:

root # fdisk -l /dev/sdd

You will get something like Disk identifier: 0x2d6b036c, so assuming root partition is sdd2, the resulting line will be root=PARTUUID=2d6b036c-02
More info is available here: Description of PARTUUID feature

To use the real_root=LABEL= or the real_root=UUID= boot parameter, you have to use an initramfs. An example of using labels (with lilo) can be found here: Install Gentoo on a bootable USB stick


See also

Gentoo AMD64 Handbook page on grub
Knowledge Base:Adjusting GRUB settings for a single boot session
Install Gentoo on a bootable USB stick

Personal tools
Namespaces

Variants
Actions
Gentoo Websites logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Navigation
Toolbox
Categories