Ubuntu audio driver for H87M-D3H

dor_13

Distinguished
Oct 26, 2011
202
3
18,685
Hi,

I have a GA-H87M-D3H motherboard.
Also I have Ubuntu 10.04.

In my dual-boot configuration, I can hear music in Windows 7 (after installing the drivers), but can't hear anything on the Ubuntu.

Some info:
Code:
$ uname -a
Linux dor-desktop 2.6.32-51-generic #113-Ubuntu SMP Wed Aug 21 19:46:35 UTC 2013 x86_64 GNU/Linux
$ lspci
00:00.0 Host bridge: Intel Corporation 4th Gen Core Processor DRAM Controller (rev 06)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller (rev 06)
00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06)
00:03.0 Audio device: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller (rev 06)
00:14.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB xHCI (rev 04)
00:16.0 Communication controller: Intel Corporation 8 Series/C220 Series Chipset Family MEI Controller #1 (rev 04)
00:16.3 Serial controller: Intel Corporation 8 Series/C220 Series Chipset Family KT Controller (rev 04)
00:1a.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #2 (rev 04)
00:1b.0 Audio device: Intel Corporation 8 Series/C220 Series Chipset High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #1 (rev d4)
00:1c.2 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #3 (rev d4)
00:1c.3 PCI bridge: Intel Corporation 82801 PCI Bridge (rev d4)
00:1d.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation H87 Express LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 8 Series/C220 Series Chipset Family SMBus Controller (rev 04)
01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Juniper PRO [Radeon HD 5750]
01:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Juniper HDMI Audio [Radeon HD 5700 Series]
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 06)
04:00.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 41)

I think that ALSA recognizes only one audio output, which is the digital audio output of my graphic card (HDMI)...

But I want to get the audio signal from the motherboard.

Any ideas what needs to be done?
I've searched google with many string combinations but couldn't find anything useful..

Thank you very much.
 
Solution
I don't understand... If you are on some mission critical system why would you try to manually install back ported drivers? Makes no sense...

In any case:

First try this package from ubuntu, you may need to enable backport repository!
Code:
sudo apt-get install linux-backports-modules-headers-lucid-generic
This installs backported drivers.

If this does not work you will need to compile ALSA-drivers from source.
You need to compile this package
ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.25.tar.bz2
*You will need to have kernel headers installed on your system*
Code:
sudo apt-get install build-essential linux-headers-`uname -r`
tar -xjvf alsa-driver-1.0.25.tar.bz2
cd alsa-driver-1.0.25
./configure
make
sudo make install
...

dor_13

Distinguished
Oct 26, 2011
202
3
18,685

Indeed an upgrade is required, although it is preferred to upgrade to Ubuntu 12 rather than 13, because of some bugs that I've heard that exists in 13.

For now I prefer not to upgrade at all cuz I'm afraid that I won't do it properly and then all my data would get deleted.(despite having a backup)
Maybe soon I'll buy another HDD and then I'll install Ubuntu 12 and some other distros.

Still if anyone knows the answer to the problem please do help...
 

stillblue

Honorable
Nov 30, 2012
1,163
0
11,660
open a terminal
alsamixer
f6 to choose soundcard.

To install the new ubuntu without losing data just do a side by side install of Ubuntu and transfer the data to the new partition. You could then make the old partition a data one and then any future installs would never bother your data.
 

dor_13

Distinguished
Oct 26, 2011
202
3
18,685

I've already used AlsaMixer but it doesn't recognize the sound output of the motherboard. See picture:
Alsa_Mixer.png

(Link to pic: http://s11.postimg.org/juq1ubksz/Alsa_Mixer.png )

I have thought of that but I don't want to neglect something that I don't currently remember, so I'd rather to postpone the upgrade until I'll have enough time to organize everything...
 
dor_13 stillblue has posted the solution already. Upgrade your OS.
Stop using brand new hardware on ancient depreciated OS; it is practically blasphemous!
10.04 is way too old to have drivers for your motherboard which is on the market for only a few months...

Or if you are brave you can try to find your audio driver on realtek website for 2.6 series kernel and manually install it.
 

dor_13

Distinguished
Oct 26, 2011
202
3
18,685

skittle,

I know that I need to upgrade, but all I ask in this post is to have a solution for Ubuntu 10.04...
Saying "You need to upgrade" doesn't help since I already know that... The solution has to be with Ubuntu 10.04...
 
I don't understand... If you are on some mission critical system why would you try to manually install back ported drivers? Makes no sense...

In any case:

First try this package from ubuntu, you may need to enable backport repository!
Code:
sudo apt-get install linux-backports-modules-headers-lucid-generic
This installs backported drivers.

If this does not work you will need to compile ALSA-drivers from source.
You need to compile this package
ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.25.tar.bz2
*You will need to have kernel headers installed on your system*
Code:
sudo apt-get install build-essential linux-headers-`uname -r`
tar -xjvf alsa-driver-1.0.25.tar.bz2
cd alsa-driver-1.0.25
./configure
make
sudo make install
reboot.

Again you need to update, 10.04 is End Of Life (EOL) already... it won't be receiving critical updates updates anymore
 
Solution