Forrest logo
back to the efibootmgr tool

efibootmgr:tldr:fd37a

efibootmgr: List the filepaths.
$ efibootmgr -v
try on your machine

The command "efibootmgr -v" is used to display the currently configured EFI boot entries in a system's UEFI firmware. It is primarily used in UEFI-based systems, which include most modern computers.

Here is a breakdown of each component of the command:

  • "efibootmgr": This is the actual command that is being executed. It stands for EFI Boot Manager and is a utility for manipulating the EFI boot entries.
  • "-v": This is an option or flag passed to the efibootmgr command. It stands for "verbose" and provides more detailed information about the EFI boot entries, including their device paths, boot manager paths, and other attributes.

By running "efibootmgr -v", you can get an overview of the boot entries stored in the UEFI firmware. These entries include information about installed operating systems, boot loaders, and other bootable devices. The verbose output provides more context and specific details about each entry, allowing you to understand the boot configuration of your system.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the efibootmgr tool