即使超时=0,我也无法绕过 Grub2

即使超时=0,我也无法绕过 Grub2

我在家用电脑上使用 Grub 2 时遇到了问题。我最近安装了 Lubuntu,因为机器太旧了,无法很好地运行 Ubuntu,而且我的家人除了运行 BBC iPlayer 和不崩溃之外,并不需要它做任何事情。

但令人沮丧的是,我无法让它快速启动,因为尽管 GRUB_TIMEOUT=0,GRUB2.00-7~ 屏幕仍然停留在那里,直到您手动选择第一个选项。

有什么建议吗?我确信这一定很简单,但我找不到类似的帖子。我没有 LiveCD 可以重新安装,不久前通过 USB 安装,我不想冒险独自/盲目地使用可能导致系统无法使用的命令……

那么有没有...比如,一个默认的 grub,我可以将其复制并粘贴到现有的 grub.cfg 文本上,然后使用 sudo update-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_HIDDEN_TIMEOUT=1
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
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"

我一直在使用 sudo leafpad /etc/default/grub 来编辑。

非常感谢您抽出时间和理解。

答案1

尝试这个:

#/boot/grub/grub.cfg
terminal_output gfxterm
if [ "${recordfail}" = 1 ]; then
set timeout=0

“recordfail”部分是为了防止系统在断电后启动。因此,如果这个方法有效,您的家人可能错误地关闭了计算机。可能有更好的方法可以解决这个问题,但我见过很多人推荐这种方法(我甚至在我的家庭服务器上也使用这种方法,因为我希望它在电源恢复时自动启动)。

相关内容