Have you ever rebooted your system but missed the window of opportunity to enter BIOS/UEFI? In that case you'll have wait for the distro to start and then reboot again. Well, I'm here to give you a simple solution for that: "Reboot" & "Shut down".
1. Open grub.cfg with your favorite text editor:
2. CTRL+F to search for a word "menuentry". Scroll down after the last word "menuentry" - right where the commented lines begin.
3. Right after the bracket (this bracket: } ) for the last menuentry, add these two entries:
and reboot. Wait for GRUB to appear and you'll notice that now you have "Reboot" & "Shut down" entries. Thus you won't have to wait for your distro to start in order to reboot and finally be able to enter BIOS/UEFI.
1. Open grub.cfg with your favorite text editor:
Code:
sudo pluma /boot/grub/grub.cfg
2. CTRL+F to search for a word "menuentry". Scroll down after the last word "menuentry" - right where the commented lines begin.
3. Right after the bracket (this bracket: } ) for the last menuentry, add these two entries:
Code:
menuentry "Restart" --class restart {
echo "System rebooting..."
reboot
}
menuentry "Shut down" --class shutdown {
echo "System shutting down..."
halt
}
and reboot. Wait for GRUB to appear and you'll notice that now you have "Reboot" & "Shut down" entries. Thus you won't have to wait for your distro to start in order to reboot and finally be able to enter BIOS/UEFI.

