GNU GRUB

"GRUB" redirects here. For other uses, see grub (disambiguation).
GNU GRUB

GRUB v2 running in text mode
Original author(s) Erich Boleyn
Developer(s) GNU Project
Initial release 1995 (1995)
Stable release
2.00 (GRUB 2) / June 27, 2012 (2012-06-27)[1]
Preview release
2.02~beta3 (GRUB 2)[2] / February 28, 2016 (2016-02-28)
Repository git.savannah.gnu.org/cgit/grub.git
Development status Active
Written in Assembly, C[3]
Operating system Linux, OS X, BSD, Solaris (x86 port) and Windows (through chainloading)
Platform IA-32, x86-64, IA-64, ARM, PowerPC, MIPS and SPARC
Available in English and others
Type Bootloader
License GNU GPL version 3[4]
Website www.gnu.org/software/grub/

GNU GRUB (short for GNU GRand Unified Bootloader) is a boot loader package from the GNU Project. GRUB is the reference implementation of the Free Software Foundation's Multiboot Specification, which provides a user the choice to boot one of multiple operating systems installed on a computer or select a specific kernel configuration available on a particular operating system's partitions.

GNU GRUB was developed from a package called the Grand Unified Bootloader (a play on Grand Unified Theory[5]). It is predominantly used for Unix-like systems. The GNU operating system uses GNU GRUB as its boot loader, as do most Linux distributions and the Solaris operating system on x86 systems, starting with the Solaris 10 1/06 release.

Features

Users can dynamically configure the GRUB subsystem. GRUB provides a simple, bash-like, command line interface as it loads, allowing boot-time changes, such as selecting different kernels or initial RAM disks, and letting users write new boot sequences on the fly, in addition to the normal menu lists.

GRUB is highly portable. It supports multiple executable formats and is geometry-translation independent. It supports all commonly used Unix file systems, the Windows file systems FAT and NTFS, and logical block addressing (LBA). GRUB allows users to view the contents of files on any supported filesystem.

GRUB can download, and automatically decompress, operating system boot images from network, thus supporting diskless systems. GRUB supports operating systems that do not multi-boot, using chain loading. It uses the same two or three lines of command sequences to boot any DOS, Windows, Linux, BSD or Solaris system, making it very easy to work with it. The chain loaders for the supported Unix-like OSes are built into GRUB.

GRUB can be used with a variety of user interfaces. Most Linux distributions take advantage of GRUB's support for a graphical interface to provide a customized boot menu with a background image. A modification of GRUB's text interface can use a serial link so that a remote terminal can have access to the boot loader.

GRUB uses a scrollable screen for operating system boot selection. This means 150 or more boot choices can be easily controlled by adding them to the grub.cfg configuration file. The arrow keys are used to select which OS to boot. In addition to the normal menu interface, GRUB also provides a bash-like terminal command-prompt that provides a rich set of commands to allow a user to view or alter any part of the boot process. With these tools one can, without prior knowledge of what is installed on a computer, use GRUB from an external device such as a USB device or a CD-ROM to boot up an installed operating system.

Operation

GNU GRUB on a MBR-partitioned hard drive; stage 1 (boot.img) can alternatively be written into one of the VBRs.
GNU GRUB on a GPT-partitioned hard drive

Booting

When a computer is turned on, BIOS finds the configured primary bootable device (usually the computer's hard disk) and loads and executes the initial bootstrap program from the master boot record. The MBR is the first sector of the hard disk, with zero as its offset (sectors counting starts at zero). For a long time, the size of a sector has been 512 bytes, but since 2009 there are hard disks available with a sector size of 4096 bytes, called Advanced Format disks. As of October 2013, such hard disks are still accessed in 512-byte sectors, by utilizing the 512e emulation.[6]

The legacy MBR partition table supports a maximum of four partitions and occupies 64 bytes. Together with the optional disk signature (four bytes) and disk timestamp (six bytes), this leaves between 434 and 446 bytes available for the machine code of a boot loader. Although such a small space can be sufficient for very simple boot loaders,[7] it is not big enough to contain a boot loader supporting complex and multiple file systems, menu-driven selection of boot choices, etc. Boot loaders with bigger footprints are thus split into pieces, where the smallest piece fits into and resides within the MBR, while larger piece(s) are stored in other locations (for example, into empty sectors between the MBR and the first partition) and invoked by the boot loader's MBR code.

Operating system kernel images are in most cases files residing on appropriate file systems, but the concept of a file system is unknown to the BIOS. Thus, in BIOS-based systems, the duty of a boot loader is to access the content of those files, so it can be loaded into the RAM and executed.

One possible approach for boot loaders to load kernel images is by directly accessing hard disk sectors without understanding the underlying file system. Usually, additional level of indirection is required, in form of maps or map files  auxiliary files that contain a list of physical sectors occupied by kernel images. Such maps need to be updated each time a kernel image changes its physical location on disk, due to installing new kernel images, file system defragmentation etc. Also, in case of the maps changing their physical location, their locations need to be updated within the boot loader's MBR code, so the sectors indirection mechanism continues to work. This is not only cumbersome, but it also leaves the system in need of manual repairs in case something goes wrong during system updates.[8]

Another approach is to make a boot loader aware of the underlying file systems, so kernel images are configured and accessed using their actual file paths. That requires a boot loader to contain a driver for each of the supported file systems, so they can be understood and accessed by the boot loader itself. This approach eliminates the need for hardcoded locations of hard disk sectors and existence of map files, and does not require MBR updates after the kernel images are added or moved around. Configuration of a boot loader is stored in a regular file, which is also accessed in a file system-aware way to obtain boot configurations before the actual booting of any kernel images. As a result, the possibility for things to go wrong during various system updates is significantly reduced. As a downside, such boot loaders have increased internal complexity and even bigger footprints.[8]

GNU GRUB uses the second approach, by understanding the underlying file systems. The boot loader itself is split into multiple stages, allowing for itself to fit within the MBR boot scheme.

Two major versions of GRUB are in common use: GRUB version 1, called GRUB legacy, is only prevalent in older releases of Linux distributions, some of which are still in use and supported, for example CentOS 5. GRUB 2 was written from scratch and intended to replace its predecessor, and is now used by a majority of Linux distributions.

GRUB version 1 (GRUB legacy)

GRUB v1 running as part of a Ubuntu 8.04 installation

The master boot record (MBR) usually contains GRUB stage 1, but can contain another bootloader which can chain boot GRUB stage 1 from another boot sector such as a partition's volume boot record. Given the small size of a boot sector (512 Bytes), stage 1 can do little more than load the next stage of GRUB by loading a few disk sectors from a fixed location near the start of the disk (within its first 1024 cylinders).

Stage 1 can load stage 2 directly, but it is normally set up to load the stage 1.5., located in the first 30 KiB of hard disk immediately following the MBR and before the first partition. In case this space is not available (unusual partition table, special disk drivers, GPT or LVM disk) the install of stage 1.5 will fail. The stage 1.5 image contains file system drivers, enable it to directly load stage 2 from any known location in the filesystem, for example from /boot/grub. Stage 2 will then load the default configuration file and any other modules needed.

GRUB version 2 (GRUB)

boot.img has the exact size of 446 bytes and is written to the MBR (sector 0). core.img is written to the empty sectors between the MBR and the first partition, if available (for legacy reasons the first partition starts at sector 63 instead of sector 1, but this is not mandatory). The /boot/grub directory can be located on an distinct partition, or on the root partition.

Once GRUB stage 2 has loaded, it presents a TUI-based operating system selection (kernel selection) menu, where the user can select which operating system to boot. GRUB can be configured to automatically load a specified kernel after a user-defined timeout; if the timeout is set to zero seconds, pressing and holding ⇧ Shift while the computer is booting makes it possible to access the boot menu.[9]

If files or the partition become unavailable, or if the user wishes to take direct control, stage 2 will drop the user to the GRUB command prompt, where the user can then manually specify the boot parameters.

In the operating system selection menu GRUB accepts a couple of commands:

Once boot options have been selected, GRUB loads the selected kernel into memory and passes control to the kernel. Alternatively, GRUB can pass control of the boot process to another boot loader, using chain loading. This is the method used to load operating systems such as Microsoft Windows, that do not support the Multiboot Specification or are not supported directly by GRUB.

If the usage of dm-crypt is intended, the contents of /boot, i.e. /boot/grub, the Linux kernel and initramfs respectively initrd need to be on a distinct non-encrypted partition, because the logic to handle encrypted partitions resides inside the Linux kernel.

History

GRUB was initially developed by Erich Boleyn as part of work on booting the operating system GNU/Hurd, developed by the Free Software Foundation.[12] In 1999, Gordon Matzigkeit and Yoshinori K. Okuji made GRUB an official software package of the GNU Project and opened the development process to the public.[12] As of 2014, the majority of Linux distributions have adopted GNU GRUB 2, as well as other systems such as Sony's PlayStation 4.[13]

Development

GRUB version 1 (also known as "GRUB Legacy") is no longer under development and is being phased out.[14] The GNU GRUB developers have switched their focus to GRUB 2,[15] a complete rewrite with goals including making GNU GRUB cleaner, more robust, more portable and more powerful. GRUB 2 started under the name PUPA. PUPA was supported by the Information-technology Promotion Agency (IPA) in Japan. PUPA was integrated into GRUB 2 development around 2002, when GRUB version 0.9x was renamed GRUB Legacy.

Some of the goals of the GRUB 2 project include support for non-x86 platforms, internationalization/localization, non-ASCII characters, dynamic modules, memory management, a scripting mini-language, migrating platform specific (x86) code to platform specific modules, and an object-oriented framework. GNU GRUB version 2.00 was officially released on June 26, 2012.[1][16]

Three of the most widely used Linux distributions use GRUB 2 as their mainstream boot loader.[17][18][19] Ubuntu adopted it as the default boot loader in its 9.10 version of October 2009.[20] Fedora followed suit with Fedora 16 released in November 2011.[21] openSUSE adopted GRUB 2 as the default boot loader with its 12.2 release of September 2012.[22] Solaris also adopted GRUB 2 on the x86 platform in the Solaris 11.1 release.[23]

Variants

GNU GRUB is free and open-source software, so several variants have been created. Some notable ones, which have not been merged into GRUB mainline:

Utilities

GRUB configuration tools

StartUp-Manager, a program used to configure GRUB
GRUB Customizer, another tool to configure GRUB

The setup tools in use by various distributions often include modules to set up GRUB: for example, YaST2 on SUSE/openSUSE distributions and Anaconda on Fedora/RHEL distributions. StartUp-Manager and GRUB Customizer are graphical configuration editors for Debian-based distributions.

For GRUB 2 there are KDE Control Modules.[29][30]

GRLDR ICE is a tiny tool for modifying the default configuration of grldr file for GRUB4DOS.[31]

Other utilities

GRUB Utilities is a collection of multi-platform utilities for GRUB Legacy, GRUB 2 and GRUB for DOS.[32]

Boot-Repair is a simple graphical tool for recovering from frequent boot-related problems with GRUB and Microsoft Windows bootloader. This application is available under GNU GPL license. Boot-Repair can repair GRUB on multiple Linux distributions including, but not limited to, Debian, Ubuntu, Mint, Fedora, openSUSE, and Arch Linux[33] and will be included in the future versions of Ubuntu.[34]

See also

References

  1. 1 2 Vladimir 'φ-coder/phcoder' Serbinenko (28 Jun 2012). "GRUB 2.00 released". grub-devel (Mailing list). Retrieved 1 December 2012.
  2. ftp://alpha.gnu.org/gnu/grub/
  3. "Ohloh Analysis Summary – GNU GRUB". Ohloh. Retrieved 2010-05-12.
  4. "GNU GRUB license".
  5. EnterpriseLinux.com Definitions Definition of GRand Unified Bootloader
  6. Smith, Ryan (December 18, 2009). "Western Digital's Advanced Format: The 4K Sector Transition Begins". AnandTech. Retrieved 2013-10-10.
  7. "mbldr (Master Boot LoaDeR)". sourceforge.net. 2009. Retrieved 2013-10-10.
  8. 1 2 "Booting and Boot Managers". SuSE. Retrieved 2013-10-10.
  9. "How to Configure the GRUB2 Boot Loader's Settings". howtogeek.com.
  10. "ArchWiki: Blacklist Kernel modules from GNU GRUB". 2012-11-11. Retrieved 2012-12-01.
  11. "GNU GRUB documentation".
  12. 1 2 GRUB Manual – 1.2 Grub History. Gnu.org (2012-06-23). Retrieved on 2012-12-01.
  13. "PS4 runs Orbis OS, a modified version of FreeBSD that's similar to Linux". extremetech.com. 2013-06-24. Retrieved 2013-10-23.
  14. GNU GRUB – GRUB Legacy. Gnu.org. Retrieved on 2012-12-01.
  15. GNU GRUB – GRUB 2 at the Wayback Machine (archived June 7, 2008).
  16. Larabel, Michael. "GRUB 2.00 Boot-Loader Officially Released". Phoronix.com. Retrieved 28 June 2012.
  17. Haddon, Tom (26 January 2012). "An Introduction to Ubuntu". WebJunction. Retrieved 21 September 2012.
  18. Janssen, Cory. "What is Red Hat Enterprise Linux (RHEL)?". Technopedia. Retrieved 21 September 2012.
  19. Varghese, Sam (2012-09-20). "SUSE chief lists progress since privatisation". Retrieved 21 September 2012.
  20. "9.10 Karmic GRUB version". Distrowatch.com. Retrieved 8 July 2012.
  21. GRUB 2. FedoraProject. Retrieved on 2012-12-01.
  22. openSUSE:Upcoming features – openSUSE. En.opensuse.org. Retrieved on 2012-12-01.
  23. Solaris 11.1. Oracle Retrieved 2015-03-19.
  24. x86: Modifying Boot Behavior by Editing the GRUB Menu at Boot Time, Modifying Solaris Boot Behavior on x86 Based Systems (Task Map) – System Administration Guide: Basic Administration
  25. x86: Supported GRUB Implementations, (System Administration Guide: Basic Administration) – Sun Microsystems
  26. 2.3 Why does Syllable have its own version of GRUB?, Syllable Documentation
  27. "TrustedGRUB project". sourceforge.net. Retrieved November 18, 2014.
  28. BIOS Implementation Test Suite, Official BITS website
  29. GRUB2 Bootloader Editor. Kde-apps.org (2012-06-18). Retrieved on 2012-12-01.
  30. "Grub2 KCM". KDE-Apps.org. Retrieved 2011-01-27.
  31. "Grub4dos tutorial". Narod.ru.
  32. GRUB Utilities – Summary. Gna.org. Retrieved on 2012-12-01.
  33. Official Boot-Repair website. Sourceforge.net (2011-08-11). Retrieved on 2012-12-01.
  34. .Boot-Repair on Ubuntu Community Help Wiki. Help.ubuntu.com (2012-11-15). Retrieved on 2012-12-01.

External links

Wikimedia Commons has media related to GNU GRUB.
Wikibooks has a book on the topic of: GRUB Installation After Windows Installation
This article is issued from Wikipedia - version of the 11/27/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.