[问题]没有找到音量控制插件和设备

我装的是7.10,小喇叭上有个红色的禁止标志,双击音量控制会出现“没有找到音量控制插件和/或设备”,我装过声卡驱动试了,找不到modules.conf文件,只有modules和modprobe.conf文件,而且modules文件内容如下:
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.

fuse
lp

是不是声卡没有启动?
我刚学,期待高手解决
这个问题我已经解决了,方法如下(我是参考:[url]http://ubuntuforums.org/showthread.php?t=205449[/url])
我的声卡为ATI IXP SB600 Realtek AC97 Audio ,按理说应该容易装,可是我却试了好多种办法,包括oss的驱动我也试过,最后在我绝望的时候,抱着最后一次如果没有装好就不用它的时候,竟然成功了。我的方法是:
1.在终端输入aplay �Cl,目的是检测声卡
Code:aplay �Cl
如果成功就会列出所有声卡,说明不需要装驱动,有可能是静音了等。
如果出现:aplay: device_list:221: no soundcard found...
就进行下一步。我的就是这样。
2.列出你的硬件设备
Code:lspci �Cv
如果你的声卡在它列出的信息内,有救,说明只是声卡驱动没有装好或没有运行。
如果没有被检测出来,麻烦了。
我的检测出来了,进行下一步。
3.到网上查找看有没有支持你的声卡的驱动,每一种类型的声卡都有一个代号snd-xxxxx,比方说我的声卡代号是snd-atiixp,以下是一些常见的声卡代号:
snd-xxxx is the card ID.
-- Azalia controller --ALC880 ALC882 ALC260 ALC262
--- Intel ICH6 ICH7 ---------
snd-hda-intel
--- ATI chipset -----
snd-atiixp
-- AC97 controller --ALC655 ALC650 ALC250 ALC255
--- Intel ICH6 ICH7 , SiS 7012 and NVidia----------
snd-intel8x0
--- Via8233 Via686a -------------------------------
snd-via82xx
--- ATI Chipset -------------------------------
snd-atiixp
4.
Code:sudo modprobe snd-atiixp(这是我的声卡)
如果成功了,就说明你的声卡已经安装了,只是没有加载。我的没有反应,我不知道成功没有,我看了一下edit /etc/modules文件,在后面加了一项:snd-atiixp
5.安装驱动
Code: sudo apt-get install build-essential linux-headers-$(uname -r) module-assistant alsa-source
sudo dpkg-reconfigure alsa-source
You now have a big blue dialog box (left and right keys to choose 'Yes' and 'No', Enter key proceed). Answer yes (for ISA-PNP - recommended by package maintainers), then yes again (for debugging - recommended by package maintainers).
注意,选择驱动的时候,有星号*的是有效的,按空格键去掉或打上*。我选的是atiixp
6.下面的步骤有两种供选择。
a.选择module-assistant
code:sudo module-assistant a-i alsa-source
If the progress bar reaches 100% with no errors, you will have installed the drivers successfully
我的没有成功。我又按下面的方法试了一下。
b.没有选择module-assistant,哪么你需要记住你的声卡的id,我的是snd-atiixp
code: cd /usr/src
sudo tar xjvf alsa-driver.tar.bz2
cd modules/alsa-driver
sudo ./configure --with-kernel=/usr/src/linux-headers-$(uname -r) --with-cards=<enter driver name here e.g. atiixp> --with-oss=yes
sudo make
sudo make install
./snddevices
重启后,我不可思议的听到了声音。

你可能感兴趣的:(插件,控制,休闲,设备,音量)