|
发表于 2011-3-18 22:16:13
|
显示全部楼层
我也遇到过,这是我的解决办法,不知道是否适合你?
1. 安装beep,并进行必要的设置(Squeeze),
sudo apt-get install beep
之后在终端输入beep后未必有beep声音,此时还需:
2. 修改alsa-base-blacklist.conf文件
sudo gedit /etc/modprobe.d/alsa-base-blacklist.conf
作如下修改:
# Comment this entry in order to load snd-pcsp driver
blacklist snd-pcsp
# Comment this entry in order to load pcspkr driver
blacklist pcspkr
保存退出。
sudo gedit /etc/modules
然后在最后加上如下模块:
snd-pcsp
#pcspkr # it is wrong if you add pscpkr to modules, which will lead to the error information: Error: Driver 'pcspkr' is already registered, aborting...
保存后重启即可生效。 |
|