今天跑了个例行的“apt upgrade”,升级了几个GRUB相关的包。我在 Ubuntu 18.04 LTS 上使用 GRUB 2.02。
此后,每次启动时都会出现 GRUB 菜单,超时 30 秒。
以前,GRUB 菜单是隐藏的。
关于可能导致这种情况的任何想法?我的 /etc/default/grub 在下面。
# 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=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="--verbose nosplash debug"
GRUB_CMDLINE_LINUX=""
Run Code Online (Sandbox Code Playgroud)