我最近尝试安装 Ubuntu 15.10,由于安装过程中“根目录”很麻烦,我决定不安装。但每次我启动时(从 USB),下图所示的启动菜单会弹出,而且会发出很大的哔哔声。这在公共场合真的很尴尬,我想知道如何让它静默启动这个菜单。
# 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"
是在linux终端中运行以下命令的结果:
cat /etc/default/grub
编辑:修复后我启动了两次,一切正常。在第三次修复启动时,我遇到了大问题,图形内容无法识别。我关闭并重新打开它,启动过程中出现了一些其他内容,显示的内容我目前记不清了。再次关闭和打开。启动正常。事实上,我正在使用装有 Ubu 15.10 的计算机编辑此内容,但这次问题与我的用户密码有关。
示例(我目前发现的)有:添加/删除用户。设置中添加/删除用户的“解锁”按钮需要密码,每次我输入密码时(我至少尝试了 15 次,所以我知道我输入了正确的密码),它都会告诉我“您的身份验证尝试失败。请重试。”
2- SUDO:我已编辑 .bashrc,以便自动登录 sudo(是的,需要输入密码)。每当我输入(正确的)密码时,都会出现错误:
tyler is not in the sudoers file. This incident will be reported
这就是我目前所做的一切,非常感谢任何帮助
答案1
根据输出判断,cat /etc/default/grub
没有配置导致蜂鸣声,因为GRUB_INIT_TUNE
已被注释掉。
但是,这可能是由于在 GRUB 菜单出现之前按住了某个键而导致的。如果您最近在笔记本电脑上洒了东西或在笔记本电脑附近吃了东西,则可能是某个键卡住了。卡住的程度不至于在完整操作系统中显示,但足以导致 GRUB 发出哔哔声。
如果您弹出键盘上的键帽并清洁其下面,这可能会解决您的问题,因为有时少量食物(或者只是日常使用中的东西)可能会进入按键下面。
编辑:我们能够在聊天中解决这个问题。
OP 必须编辑/cdrom/isolinux/menu.cfg
文件,并通过从末尾删除 来编辑该menu title Installer boot menu^G
行^G
。然后他重新启动,问题就解决了。