我正在运行 ubuntu 12.04 precision:
我试图阻止 grub 菜单显示,但问题是,它不会禁用。
我已经关注了这个链接: https://askubuntu.com/questions/111085/how-do-i-hide-the-grub-menu-showing-up-in-the-beginning-of-boot
但它不起作用,我觉得我可能有它提到的错误,但我正在努力解决该错误。
我已经设置了超时的减选项。 True、False 并添加 GRUB_DISABLE_OS_PROBER=true
但我一无所获。我真的很难过。
答案1
这就是我解决这个问题的方法,通过搜索互联网,很多人都遇到了这个问题:
/boot/grub/grub.cfg中有一个代码块:
代码块由以下语句开始:
terminal_output gfxterm #just below this line
if [ "${recordfail}" = 1 ]; then #this line is the start
删除该 if 块中的所有内容、所有子 if 以及所有内容。
然后在 if 语句的位置键入(就在 gfxterm 行下方):
set timeout=1 #or what ever number you want it to be
保存文件并重新启动(不更新 grub),BOOM 完成。