bootctl:tldr:e7134
The command "sudo bootctl reboot-to-firmware true" is used to set the system to reboot into the firmware (BIOS or UEFI) on the next startup.
Here's a breakdown of the command:
-
"sudo" is a command that allows a user with administrative privileges to execute a command as a superuser or root user. It is typically required to perform system-level tasks.
-
"bootctl" is a command-line utility used to manage the systemd-boot bootloader, which is commonly used on systems running the systemd init system.
-
"reboot-to-firmware" is an option or parameter specific to the "bootctl" command. This option allows you to configure the system to boot into the firmware setup utility on the next restart.
-
"true" is a parameter passed to the "reboot-to-firmware" option. By setting it to "true", you are enabling the system to reboot into the firmware setup utility on the next startup.
In summary, the command "sudo bootctl reboot-to-firmware true" is used to set the system to boot into the firmware setup utility (BIOS or UEFI) on the next restart.