Very recently my BIOS option is not accessible during the boot.
I checked the solution of Adriaan here but I'm puzzled.
(base) user@machine:~$ grep -e "^menuentry " /boot/grub/grub.cfg
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-####' {
menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
Well, it seems there is a UEFI Firmware Settings
but seeing there are two menu entries, starting from which should I count ?
If it can help you to find a solution in the /boot/grub/grub.cfg
file the first menuentry is in ### BEGIN /etc/grub.d/10_linux ###
part and the second menuentry is in ### BEGIN /etc/grub.d/30_uefi-firmware ###
.
#/boot/grub/grub.cfg file
### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
fwsetup
}
### END /etc/grub.d/30_uefi-firmware ###
/etc/default/grub
is set as the following.
#/etc/default/grub file
#If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=countdown
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=lsb_release -i -s 2> /dev/null || echo Debian
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
Besides, looking at some boots log I suspect it's from Kernel Version update. I noticed the BIOS was not displayed those last days. Concretely in Tue Jun 8 my machine booted on 5.4.0-73-generic and since it has booted on 5.4.0-74-generic. If this is from this I am not experienced at all to do anything with this information unfortunately.
Motherboard (recognized by the OS) TUF Z390-PRO GAMING.
Version
Kernel: Linux 5.4.0-74-generic(x86_64)
Distribution: Ubuntu 18.04.5 LTS
Version: #83~18.04.1-Ubuntu SMP Tue May 11 16:01:00 UTC 2021
GRUB_DEFAULT
butGRUB_TIMEOUT_STYLE
tomenu
. The issue is my screen is totally black and displays nothing during the boot, it only shows the part where you select the user for a session. – AvyWam Jun 14 '21 at 06:30Esc
andF4
(one after one in order to wait for something displayed) I noticed something happens. I mean, the part to select the user for a session does not show up at all, it takes a lot more time, so I think there is something displayed but my screen keep black at this moment (but not black like 'No signal' you know). – AvyWam Jun 14 '21 at 06:38systemctl reboot --firmware-setup
), and then manually loading GRUB from there? (It’ll probably show up asubuntu
in the list) – mavenor Jun 14 '21 at 19:24