如何删除 grub 菜单中倒计时(禁用倒计时)

如何删除 grub 菜单中倒计时(禁用倒计时)

我有双启动 ubuntu 和 windows 8。Ubuntu 是默认的启动操作系统,如果我之前没有更改它,则倒计时选择要启动的默认操作系统。当我在 ubuntu 和 windows 8 之间排序时,倒计时会自动隐藏,然后,我必须按 Enter 才能从任何突出显示的操作系统启动,而不受时间限制。我的问题是:我如何才能始终禁用倒计时,然后我自己使用向上/向下箭头键选择启动哪个操作系统,直到我没有选择并且没有按 Enter,它才会冻结在 grub 菜单上。任何想法都会是我的荣幸

/etc/default/grub注意:我的ubuntu中没有文件。

编辑:我重新安装了 grub(sudo apt-get --reinstall install grub2 grub-pc),现在我有一个/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="-1"
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"

我删除了自动添加的双引号并保存,然后运行,GRUB_TIMEOUT="-1"出现以下警告:-1sudo update-grub

Warning: Setting GRUB_TIMEOUT to a non-zero value when 
         GRUB_HIDDEN_TIMEOUT is set is no longer supporte

答案1

获取 grub 文件/etc/default/grub

sudo apt-get install grub2 grub-pc

然后运行

sudo update-grub

现在/etc/default/grub使用您最喜欢的编辑器打开。

(您可能需要 sudo 权限!)

并将此字段设置为-1无限期等待!

GRUB_TIMEOUT=-1

您可以尝试注释掉以下两行

# GRUB_HIDDEN_TIMEOUT=0 
# GRUB_HIDDEN_TIMEOUT_QUIET=true 

现在再次运行

sudo update-grub

大功告成!希望这对你有帮助!

答案2

也许您有一个 EFI 系统,并且 grub 位于 EFI 分区上。希望它安装在 Files->computer->/boot/efi 下,在我的系统上 grub.cfg 位于 /boot/grub 中。

不知道目前发布的解决方案是否能解决这个问题。

答案3

您可以使用 Grub-customizer 以图形方式执行此操作,有关安装该程序的说明位于 Ubuntu 论坛中http://ubuntuforums.org/showthread.php?t=1664134


请注意,链接中的说明略有过时 -grub-customizer现在可在标准 Ubuntu 存储库中使用,并且可以使用命令进行安装

sudo apt install grub-customizer

相关内容