现在我使用的是 Ubuntu 10.04 附带的 GRUB 版本(但我认为以前在旧版本上也发生过这种情况)。我有一个选项列表可供选择。如果计算机记录的按键次数多于列表中的项目数,则每次多按一次键,PC 扬声器都会发出一次蜂鸣声,直到计算机结束蜂鸣声,它才会响应。
在我的列表中,最新的 Ubuntu 内核位于顶部,Windows 7 位于底部。我倾向于按下向下箭头键并一直按住直到选中 Windows 项。不幸的是,移动选择与按键次数不同步,如果我不小心,我会听到很多哔哔声。
我该如何停止这种行为?
编辑
按照要求,GRUB.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/GRUB-mkconfig using templates
# from /etc/GRUB.d and settings from /etc/default/GRUB
#
### BEGIN /etc/GRUB.d/00_header ###
if [ -s $prefix/grubenv ]; then
load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
set saved_entry=${prev_saved_entry}
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
fi
}
function recordfail {
set recordfail=1
if [ -n ${have_grubenv} ]; then if [ -z ${boot_once} ]; then save_env recordfail; fi; fi
}
insmod ext2
set root='(hd0,6)'
search --no-floppy --fs-uuid --set 35fef0b0-75c0-4019-b907-1447f3445977
if loadfont /usr/share/GRUB/unicode.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 9b175976-1267-442f-9f9a-d75d85d328e1
set locale_dir=($root)/GRUB/locale
set lang=sr
insmod gettext
if [ ${recordfail} = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/GRUB.d/00_header ###
### BEGIN /etc/GRUB.d/05_debian_theme ###
insmod ext2
set root='(hd0,6)'
search --no-floppy --fs-uuid --set 35fef0b0-75c0-4019-b907-1447f3445977
insmod png
if background_image /usr/share/images/desktop-base/moreblue-orbit-GRUB.png ; then
set color_normal=black/black
set color_highlight=magenta/black
else
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
fi
### END /etc/GRUB.d/05_debian_theme ###
### BEGIN /etc/GRUB.d/10_linux ###
menuentry 'Ubuntu, with Linux 2.6.32-24-generic' --class Ubuntu --class gnu-Linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 9b175976-1267-442f-9f9a-d75d85d328e1
Linux /vmlinuz-2.6.32-24-generic root=UUID=35fef0b0-75c0-4019-b907-1447f3445977 ro quiet splash
initrd /initrd.img-2.6.32-24-generic
}
menuentry 'Ubuntu, with Linux 2.6.32-24-generic (recovery mode)' --class Ubuntu --class gnu-Linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 9b175976-1267-442f-9f9a-d75d85d328e1
echo 'Loading Linux 2.6.32-24-generic ...'
Linux /vmlinuz-2.6.32-24-generic root=UUID=35fef0b0-75c0-4019-b907-1447f3445977 ro single
echo 'Loading initial ramdisk ...'
initrd /initrd.img-2.6.32-24-generic
}
menuentry 'Ubuntu, with Linux 2.6.32-23-generic' --class Ubuntu --class gnu-Linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 9b1
答案1
遗憾的是,这并不像将 pcspkr 列入黑名单那么简单,因为 ubuntu 甚至还没有启动。你能在这里发布你的(/boot/grub/
)grub.cfg
吗?
另一个解决方案是,不要按住向下箭头,只需按下它直到进入 Windows 7。如果 grub 菜单条目太多而无法实现,请考虑删除早期内核版本的条目(再次通过grub.cfg
)。
答案2
只有一个办法可以阻止这些难以置信恼人的哔哔声:拔掉 PC 扬声器。只需进入机箱并从主板上断开 SPKR 针脚即可。
当计算机完全启动时,您可以使用真实声卡来制作任何您需要的音频。当操作系统尚未启动时,您无论如何都不想听到那些刺耳的恼人的哔哔声。