解决HP compaq 510 系统声卡问题 过程描述
- linsfly
- 帖子: 77
- 注册时间: 2009-08-03 20:25
解决HP compaq 510 系统声卡问题 过程描述
机器:HP compaq 510 918
$ tail -2 /proc/asound/oss/sndstat 命令查看声卡型号为:
Mixers:
0: IDT 92HD75B2X5
安装Ubuntu 904 后没声音,内置音箱和耳机都没有任何声音。
搜索觖决方法如下:
sudo gedit /etc/modprobe.d/alsa-base.conf
增加以下内容:
alias snd-card-0 snd-hda-intel
alias sound-slot-0 snd-hda-intel
options snd-hda-intel model=hp-dv5
options snd-hda-intel enable_msi=1
以前在32位 2.6.28-15-generic内核上试过,开机时极大刺耳噪音,后来就能用光盘进入系统把
options snd-hda-intel model=hp-dv5删除。仍然无声音。
现在在64位 2.6.28-11-generic内核上增加上面代码后,把音量设为静音,开机,取消静音,
这下耳机有声音了,但笔记本自带音箱仍然没有声音。
在32位系统上把内核换回 2.6.28-11-generic 不知是否有效,有待验证。
耳机问题觖了,继续搜索觖决自带音箱声音方案,找到如下贴:
解决音响问题::
Having sound issues with HP dvx laptop
If you have an HP dv4, dv5, and perhaps a dv7 model series laptop, you may have sound issues. ex: HP Pavilion dv4 1225, HP Pavilion dv5 1044ca, etc...
如果你使用的是HP dv4、dv5或者dv7系列的笔记本,你的声音可能会有问题。比如:HP Pavilion dv4 1225、HP Pavilion dv5 1044ca等。
- this fix work greet with Jaunty Jackalope (Ubuntu 9.04) 30 apr 2009
这个补丁可以很好的工作在Jaunty Jackalope (Ubuntu 9.04)上。
- the alsa developers have a solution for this issue:
alsa开发者公布了这个解决办法:
The cause, according to some alsa developers, is an incorrect 'pin' assignment (in the BIOS, perhaps) whereby sound output meant for the internal speakers gets routed to the wrong place.
The latest alsa-driver snapshot provides a fix for this issue. You can get it here:
按照一下方式下载并安装最新版本的补丁:
cd ~
mkdir src
cd src
mkdir alsa
cd alsa
wget ftp://ftp.kernel.org/pub/linux/kernel/p ... hot.tar.gz
tar -xvf alsa-driver-snapshot.tar.gz
cd alsa-driver
sudo ./configure
sudo make
sudo make install-modules
按上面步骤完全成功后,重启,发现音量控制那里的Front没有了,增加了一个Speaker,全部拉上去,内置的喇叭有声音了。
至此问题全部觖决。
贴中还说,如果还不能正常工作的话请按下面的步骤操作:(注意:以下步骤没有亲身经历,正确性网友自行验证)
sudo vim /etc/modprobe.d/alsa-base.conf
[add 'options snd_hda_intel model=hp-dv5' sans quotes to the bottom of the file, even if you have a dv4, etc.]
在文件中添加一行:
options snd_hda_intel model=hp-dv5
sudo reboot
最后解决方式,找一个耳机,先插入耳机,然后拔出耳机,最后,一切ok
重启之后,还是要重复操作,很麻烦的
如果你想要一劳永逸,给你介绍一个方法,可以彻底解决:
终极方案:
1。终端输入
代码:
sudo gedit /etc/modprobe.d/alsa-base.conf
2。然后在最后添加代码:
代码:
options snd-hda-intel model=laptop
$ tail -2 /proc/asound/oss/sndstat 命令查看声卡型号为:
Mixers:
0: IDT 92HD75B2X5
安装Ubuntu 904 后没声音,内置音箱和耳机都没有任何声音。
搜索觖决方法如下:
sudo gedit /etc/modprobe.d/alsa-base.conf
增加以下内容:
alias snd-card-0 snd-hda-intel
alias sound-slot-0 snd-hda-intel
options snd-hda-intel model=hp-dv5
options snd-hda-intel enable_msi=1
以前在32位 2.6.28-15-generic内核上试过,开机时极大刺耳噪音,后来就能用光盘进入系统把
options snd-hda-intel model=hp-dv5删除。仍然无声音。
现在在64位 2.6.28-11-generic内核上增加上面代码后,把音量设为静音,开机,取消静音,
这下耳机有声音了,但笔记本自带音箱仍然没有声音。
在32位系统上把内核换回 2.6.28-11-generic 不知是否有效,有待验证。
耳机问题觖了,继续搜索觖决自带音箱声音方案,找到如下贴:
解决音响问题::
Having sound issues with HP dvx laptop
If you have an HP dv4, dv5, and perhaps a dv7 model series laptop, you may have sound issues. ex: HP Pavilion dv4 1225, HP Pavilion dv5 1044ca, etc...
如果你使用的是HP dv4、dv5或者dv7系列的笔记本,你的声音可能会有问题。比如:HP Pavilion dv4 1225、HP Pavilion dv5 1044ca等。
- this fix work greet with Jaunty Jackalope (Ubuntu 9.04) 30 apr 2009
这个补丁可以很好的工作在Jaunty Jackalope (Ubuntu 9.04)上。
- the alsa developers have a solution for this issue:
alsa开发者公布了这个解决办法:
The cause, according to some alsa developers, is an incorrect 'pin' assignment (in the BIOS, perhaps) whereby sound output meant for the internal speakers gets routed to the wrong place.
The latest alsa-driver snapshot provides a fix for this issue. You can get it here:
按照一下方式下载并安装最新版本的补丁:
cd ~
mkdir src
cd src
mkdir alsa
cd alsa
wget ftp://ftp.kernel.org/pub/linux/kernel/p ... hot.tar.gz
tar -xvf alsa-driver-snapshot.tar.gz
cd alsa-driver
sudo ./configure
sudo make
sudo make install-modules
按上面步骤完全成功后,重启,发现音量控制那里的Front没有了,增加了一个Speaker,全部拉上去,内置的喇叭有声音了。
至此问题全部觖决。
贴中还说,如果还不能正常工作的话请按下面的步骤操作:(注意:以下步骤没有亲身经历,正确性网友自行验证)
sudo vim /etc/modprobe.d/alsa-base.conf
[add 'options snd_hda_intel model=hp-dv5' sans quotes to the bottom of the file, even if you have a dv4, etc.]
在文件中添加一行:
options snd_hda_intel model=hp-dv5
sudo reboot
最后解决方式,找一个耳机,先插入耳机,然后拔出耳机,最后,一切ok
重启之后,还是要重复操作,很麻烦的
如果你想要一劳永逸,给你介绍一个方法,可以彻底解决:
终极方案:
1。终端输入
代码:
sudo gedit /etc/modprobe.d/alsa-base.conf
2。然后在最后添加代码:
代码:
options snd-hda-intel model=laptop
好好折腾。
- RegentW
- 帖子: 1486
- 注册时间: 2007-02-27 21:47
- 来自: NN
- hcym
- 帖子: 15634
- 注册时间: 2007-05-06 2:46
Re: 解决HP compaq 510 系统声卡问题 过程描述
老天爷,比海盗藏宝图还玄
幸亏有win

幸亏有win

- ghoulhaha
- 帖子: 10
- 注册时间: 2009-04-26 19:33
Re: 解决HP compaq 510 系统声卡问题 过程描述
强!!!顶贴,学习了
- linsfly
- 帖子: 77
- 注册时间: 2009-08-03 20:25
-
- 帖子: 63
- 注册时间: 2008-07-16 8:10
Re: 解决HP compaq 510 系统声卡问题 过程描述
我的联想R400 ,Conexant2056 声卡,耳机有声音,音箱没声音,
如何解决?
如何解决?
-
- 帖子: 63
- 注册时间: 2008-07-16 8:10
Re: 解决HP compaq 510 系统声卡问题 过程描述
我的联想R400 ,Conexant2056 声卡,耳机有声音,音箱没声音,
如何解决?
如何解决?
-
- 帖子: 302
- 注册时间: 2009-07-04 16:18
Re: 解决HP compaq 510 系统声卡问题 过程描述
啊。纠结了N天,按照楼主的方法终于搞定了。泪流满面阿
Freedom is the power to decide what your computer does, and the only way to have this freedom is to know what your computer is
doing. Freedom is a computer that is without secrets, one where everything can be known if you care enough to find out.
doing. Freedom is a computer that is without secrets, one where everything can be known if you care enough to find out.
- linsfly
- 帖子: 77
- 注册时间: 2009-08-03 20:25
- 风过云烟
- 帖子: 36
- 注册时间: 2009-04-07 19:14
Re: 解决HP compaq 510 系统声卡问题 过程描述
我的是HP CQ32,喇叭有声音,但插上耳机时无声,
直接复制
"alias snd-card-0 snd-hda-intel
alias sound-slot-0 snd-hda-intel
options snd-hda-intel model=hp-dv5
options snd-hda-intel enable_msi=1
“
重启后OK,
哈哈,终于解决了
直接复制
"alias snd-card-0 snd-hda-intel
alias sound-slot-0 snd-hda-intel
options snd-hda-intel model=hp-dv5
options snd-hda-intel enable_msi=1
“
重启后OK,
哈哈,终于解决了