当前位置: 首页>>技术教程>>正文


如何在 dual-boot 系统上跳过 Grub 菜单?

, ,

问题描述

我安装了 Ubuntu 和 Windows 7,并通过 Grub2 进行双重引导。

99/100 次我会启动到 Ubuntu。

我想加快启动 Ubuntu 的速度,实际上 Grub2 提示符是增加时间最多的部分。

所以,我想禁用提示。

我希望能够对其进行设置,这样如果我想显示它,我可以在启动时按住 Shift 或类似的键。

但我不介意在 Ubuntu 中编辑配置文件或类似文件,以便在需要时再次显示它。

那么我该怎么做呢?


我的 /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_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
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"

最佳答案

编辑 /etc/default/grub 以包含

GRUB_HIDDEN_TIMEOUT=0
GRUB_TIMEOUT=0

保留其他设置。如果您想留出 1 秒的时间来按下 Shift(某些计算机在键盘初始化和操作系统启动之间留给您的时间非常少),请执行此操作

GRUB_HIDDEN_TIMEOUT=1
GRUB_HIDDEN_TIMEOUT_QUIET=false
GRUB_TIMEOUT=0

或者如果您希望查看菜单 1 秒钟:

GRUB_HIDDEN_TIMEOUT=
GRUB_TIMEOUT=1

如果您几乎总是启动到 Linux,您可能更愿意完全跳过启动菜单(本答案中的第一个选项,并且不用担心 Shift 键),相反,当您想要启动 Windows 时,启动 Linux 并运行以下命令表示下次重新启动(并且仅下次重新启动)将默认为 Windows:

grub-reboot Windows

您需要更改 /etc/default/grub

GRUB_DEFAULT=saved
GRUB_SAVEDEFAULT=

运行 grub-set-default 0 以确保默认启动到 Ubuntu。

有关详细信息,请参阅 Ubuntu 社区文档中的 Grub2 Setup

完成后,运行 sudo update-grub 以保存更改。

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/14077.html,未经允许,请勿转载。