升级后 GRUB 不会自动启动 Debian

升级后 GRUB 不会自动启动 Debian

我有一台服务器,我已经一个月没有使用它了,实际上已经关闭了。

服务器运行的是 Debian 9.0。大约两个月前,我将其从 Jessie 升级到testing存储库。

昨天我需要它,所以出于安全原因我打开它并升级了所有软件包。

在此升级之前:GRUB 自动引导该服务器上唯一的操作系统。

升级后:我必须按 Enter 键才能执行此操作。因此我必须插入键盘等。我相信您会理解这种不便。

我还注意到登录屏幕和桌面上的背景都发生了变化。

据我所知,这个文件:

/etc/default/grub

负责 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=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

我没有做任何其他改变。我不确定它是否从 Stretch 升级到 Sid 或任何命名。我也很困惑是什么导致了这种看似微不足道的问题,但我真诚地希望有人比我更了解 Debian。

如果您需要任何信息,我会及时提供。

编辑1:

uname -a

输出

Linux backup-server 4.9.0-1-amd64 #1 SMP Debian 4.9.2-2 (2017-01-12) x86_64 GNU/Linux

cat /etc/apt/sources.list

输出

deb http://ftp.sh.cvut.cz/debian/ testing main contrib non-free
deb-src http://ftp.sh.cvut.cz/debian/ testing main contrib non-free

deb http://security.debian.org/ testing/updates main contrib non-free
deb-src http://security.debian.org/ testing/updates main contrib non-free

答案1

今天做了一次定期维护,其中之一就是做了全面升级:

sudo apt-get dist-upgrade

在升级的内容中,有一个新的内核,还安装了新的 GRUB 软件包。

问题就这样解决了。再次自动启动。

相关内容