search

what is linux grub

May 11, 2022 pm 04:49 PM
linux

In Linux, grub is a complete program used to load and manage system startup. It is a boot program; it is the first software that runs when the computer starts, and loads the kernel of the operating system. It is up to the kernel to initialize other parts of the operating system. grub supports LBA, which puts the addressing translation used to find files into the hard drive's firmware.

what is linux grub

The operating environment of this tutorial: Ubuntu 16.04 system, Dell G3 computer.

GRUB in Linux

GRUB is a complete program for loading and managing system startup. It is the most common bootloader in Linux distributions. The bootloader is very important because without it the operating system cannot be started.

The boot program is the first software that runs when the computer starts. The boot loader transfers control to the operating system kernel.

It loads the kernel of the operating system, and then the kernel initializes other parts of the operating system (including Shell, display manager, desktop environment, etc.).

GRUB is the default bootloader for many Linux distributions. This is because it is better than many previous versions of bootloaders. Some of its features are:

  • GRUB supports LBA (Logical Block Addressing Mode), which puts the addressing translation used to find files into the hard drive’s firmware

  • GRUB provides maximum flexibility to load the required options for the operating system using a command-based pre-operating system environment.

  • Boot options such as kernel parameters can be modified using the GRUB command line.

  • There is no need to specify the physical location of the Linux kernel for GRUB. It only requires the kernel's hard drive number, partition number and file name.

  • GRUB can start almost all operating systems using direct loading and chain loading startup methods.

Boot Program and Boot Manager

I don’t want to confuse you right now, but I think this topic It is inevitable. There is a blurry line between the boot loader and the boot manager.

You already know what a bootloader is. It starts first, then loads the kernel into memory and executes it. The boot manager allows you to choose between different operating systems (if you have more than one operating system on your computer). The boot manager does not load the system directly.

With the introduction of Linux kernel version 3.3, the Linux kernel includes a built-in EFI bootloader. In fact, any EFI-enabled system includes an EFI bootloader. In systems that support EFI, the firmware reads the EFI files in the EFI System Partition (ESP) to obtain boot information.

Insert a picture here, which shows the partition table with the ESP partition:

what is linux grub

GRUB is both a boot program and a boot manager . I'll talk about GRUB in a moment. Let's first look at other GRUB-like programs.

Little knowledge: GRUB is the abbreviation of GRand Unified Bootloader.

GRUB What do those lines on the screen mean?

You will see a few lines on the GRUB screen. These lines will be different for different setups and different distributions.

Normally, the first line is your Linux distribution. If you see something like advanced options, you can go into it and find some lines that start with "linux-generic-x-y-z" etc.

When your Linux distribution updates a kernel version, it will keep at least one older version. You can choose to boot into an older Linux kernel in case your system encounters any issues with the newly updated Linux kernel.

In Ubuntu-based distributions, you may also see a recovery option.

what is linux grub

At the end, you may see an entry such as System Settings or UEFI Settings to access your system's BIOS settings.

What other boot managers are similar to GRUB?

GRUB is the most popular boot manager in Linux. But it's not the only one. There is a highly customizable boot manager called rEFInd Boot Manager, which is also loved by some Linux users.

what is linux grub

There is also a text-based boot manager called systemd-boot. As you can guess this is intended for systemd based Linux distributions. There are some distributions that are using systemd-boot, such as Pop OS.

what is linux grub

Accessing or editing GRUB

Normally the GRUB screen you see is its menu interface. If you have more than one operating system installed, it will allow you to choose one to start. If your Linux distribution has more than one kernel installed, you can also choose to load a different kernel.

Depending on the configuration of different Linux distributions, there may be some other options on your GRUB menu.

You can press the e key in the GRUB menu interface to edit menu items. This way you can modify the parameters of the kernel before it is loaded. For example, in some cases, disabling the graphics driver provided by the kernel can help you solve the problem of Linux system getting stuck at startup.

what is linux grub

You can also press the c key on the GRUB menu interface to enter the GRUB command line menu.

GRUB Configuration File

Any changes you make to GRUB in the menu interface are temporary. If you want to make some permanent changes to GRUB, such as changing the default timeout, you can modify the GRUB configuration file after the Linux system starts.

The default GRUB configuration file is /etc/default/grub. There is also a /etc/default/grub.d directory, which also stores some configurations. You can edit the /etc/default/grub file directly, but I recommend making additional modifications by adding configuration files (.cfg files) in this directory.

what is linux grub

You must update GRUB for these changes to take effect.

Use the GRUB Customizer to customize GRUB

If you are not used to using a text editor to edit files in the terminal, you can use a A graphical tool called GRUB Customizer.

It allows you to change the startup sequence, default timeout, etc. You can also use it to set the GRUB background to a custom wallpaper.

what is linux grub

The GRUB customizer can be installed from the Universe repository in Ubuntu 20.04 and via a PPA in Ubuntu 18.04. It is available in Arch Linux-based distributions via the AUR.

Related recommendations: "Linux Video Tutorial"

The above is the detailed content of what is linux grub. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The 5 Core Components of the Linux Operating SystemThe 5 Core Components of the Linux Operating SystemMay 08, 2025 am 12:08 AM

The five core components of the Linux operating system are: 1. Kernel, 2. System libraries, 3. System tools, 4. System services, 5. File system. These components work together to ensure the stable and efficient operation of the system, and together form a powerful and flexible operating system.

The 5 Essential Elements of Linux: ExplainedThe 5 Essential Elements of Linux: ExplainedMay 07, 2025 am 12:14 AM

The five core elements of Linux are: 1. Kernel, 2. Command line interface, 3. File system, 4. Package management, 5. Community and open source. Together, these elements define the nature and functionality of Linux.

Linux Operations: Security and User ManagementLinux Operations: Security and User ManagementMay 06, 2025 am 12:04 AM

Linux user management and security can be achieved through the following steps: 1. Create users and groups, using commands such as sudouseradd-m-gdevelopers-s/bin/bashjohn. 2. Bulkly create users and set password policies, using the for loop and chpasswd commands. 3. Check and fix common errors, home directory and shell settings. 4. Implement best practices such as strong cryptographic policies, regular audits and the principle of minimum authority. 5. Optimize performance, use sudo and adjust PAM module configuration. Through these methods, users can be effectively managed and system security can be improved.

Linux Operations: File System, Processes, and MoreLinux Operations: File System, Processes, and MoreMay 05, 2025 am 12:16 AM

The core operations of Linux file system and process management include file system management and process control. 1) File system operations include creating, deleting, copying and moving files or directories, using commands such as mkdir, rmdir, cp and mv. 2) Process management involves starting, monitoring and killing processes, using commands such as ./my_script.sh&, top and kill.

Linux Operations: Shell Scripting and AutomationLinux Operations: Shell Scripting and AutomationMay 04, 2025 am 12:15 AM

Shell scripts are powerful tools for automated execution of commands in Linux systems. 1) The shell script executes commands line by line through the interpreter to process variable substitution and conditional judgment. 2) The basic usage includes backup operations, such as using the tar command to back up the directory. 3) Advanced usage involves the use of functions and case statements to manage services. 4) Debugging skills include using set-x to enable debugging mode and set-e to exit when the command fails. 5) Performance optimization is recommended to avoid subshells, use arrays and optimization loops.

Linux Operations: Understanding the Core FunctionalityLinux Operations: Understanding the Core FunctionalityMay 03, 2025 am 12:09 AM

Linux is a Unix-based multi-user, multi-tasking operating system that emphasizes simplicity, modularity and openness. Its core functions include: file system: organized in a tree structure, supports multiple file systems such as ext4, XFS, Btrfs, and use df-T to view file system types. Process management: View the process through the ps command, manage the process using PID, involving priority settings and signal processing. Network configuration: Flexible setting of IP addresses and managing network services, and use sudoipaddradd to configure IP. These features are applied in real-life operations through basic commands and advanced script automation, improving efficiency and reducing errors.

Linux: Entering and Exiting Maintenance ModeLinux: Entering and Exiting Maintenance ModeMay 02, 2025 am 12:01 AM

The methods to enter Linux maintenance mode include: 1. Edit the GRUB configuration file, add "single" or "1" parameters and update the GRUB configuration; 2. Edit the startup parameters in the GRUB menu, add "single" or "1". Exit maintenance mode only requires restarting the system. With these steps, you can quickly enter maintenance mode when needed and exit safely, ensuring system stability and security.

Understanding Linux: The Core Components DefinedUnderstanding Linux: The Core Components DefinedMay 01, 2025 am 12:19 AM

The core components of Linux include kernel, shell, file system, process management and memory management. 1) Kernel management system resources, 2) shell provides user interaction interface, 3) file system supports multiple formats, 4) Process management is implemented through system calls such as fork, and 5) memory management uses virtual memory technology.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.