Where is the boot loader installed?

The boot loader needs to be installed where the BIOS is looking for something to boot. To keep things simple, you usually have a disk drive where your computer boots from, you install a GNU/Linux system in that disk and the bootloader gets there too.

The only things you need from the bootloader are really:

  • That the BIOS is able to find it
  • That it is able to find and boot your Operating System (with Linux, you just need the bootloader to have somehow access to the kernel and, if you're using one, the initrd image.)

As far as you have these two points covered, you install it where it is more convenient and where the BIOS will look for it.

The BIOS will usually look for bootloaders in the Master Boot Record of hard drives, a small area in the beginning of the drive where you can put some code to be run. You can also have a bootloader installed at the beginning of a partition.

Bootloaders are usually small enough to fit in these small areas, and even if they don't, they must put something there so the BIOS boots the bootloader.

lilo is a simple bootloader which is installed in those areas. grub is a bit bigger, and so you install some code in those areas, which, then, loads some more code from a disk partition (where grub is said to be "installed", where its configuration file lies, along with the binary code, this is usually set to be the system /boot partition, where kernels and initrds are placed too, for convenience).

In this case, if it is prompting you for the disk, this means it's asking you on which Master Boot Record should grubget installed, that is, the disk you will be booting the computer from. That part of grub will be installed only on the disk MBR. The rest probably gets installed to the same partition as / or /boot/ of the Ubuntu system you're installing (and that rest is accessible from Ubuntu, look for directories /boot/grub/ or /grub/).


Grub2 is the standard boot loader for Ubuntu. As always we prefer to have highly configurable applications. Grub2 is one of these. Grub2 will install exactly to where you told it to, irrespective of this being a good idea or not.

Master Boot Record

The usual case will be the Master Boot Record (MBR) of the drive you boot your computer from. This is most likely your first (or only) harddisk /sda. This will also be the default option when installing Grub2.

Other drives

Of course this boot device can also be another harddrive, a SSD, or even an external device. Then you will have to tell Grub2 where you want it to be installed when it asks you.

Partitions

The case where you need to install Grub to a partition is rare but still it is possible, e.g. in case you use another bootloader and chainload Grub from a partition boot record.

Other bootloaders

Other bootloaders are located in the MBR as well. Grub2 will overwrite these and thus you will no longer be able to boot with these. Grub2 will take the role to boot the OS you chose from a menu displayed on boot.

Grub application and settings

The Grub application, and the settings will not fit to the master boot record due to their size. Therefore they will be installed elsewhere (again you can configure this). Usually and per default Grub2 looks for it's files on the root / partition where you installed your Ubuntu, but this can also be any other partition on any of your harddrives.

Boot partition

Some people believe that it is a good idea to have a separate dedicated boot partition for this. But you will only need this in special cases, e.g. if you installed a UEFI BIOS which needs a GUID Partition Table (GPT) to boot from.


It's exactly where you chose to install it when you installed Ubuntu. ubiquity prompts you for this information during installation. See below:

ubiquity grub install

If you are running a legacy system (BIOS) this will typically be the Master Boot Record of the drive you choose or the unusual choice of the Partition Boot Record of the partition you chose to install it on. If you are running a system with a Unified Extensible Firmware Interface the grub bootloader will be installed in the ESP.

Sources:

https://help.ubuntu.com/community/Grub2/Installing

https://en.wikipedia.org/wiki/BIOS

https://en.wikipedia.org/wiki/Unified_Extensible_Firmware_Interface

https://www.rodsbooks.com/efi-bootloaders/installation.html#accessing

Experience

Tags:

Bootloader