Ubuntu-12.04: Sound not detected of ASUS K8U-X motherboard
From FVue
Problem
Ubuntu-12.04 is unable to detect the onboard sound of my ASUS K8U-X motherboard. Within dmesg
are these error messages:
snd_intel8x0 0000:00:04.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 AC'97 0 does not respond - RESET snd_intel8x0 0000:00:04.0: PCI INT A disabled snd_intel8x0: probe of 0000:00:04.0 failed with error -13
Environment
- Ubuntu-12.04
- Motherboard ASUS K8U-X
Solution
After doing the replacement underneath:
--- /etc/modprobe.d/alsa-base.conf.orig 2012-12-19 14:48:31.419404354 +0100 +++ /etc/modprobe.d/alsa-base.conf 2012-12-19 15:00:41.516371831 +0100 @@ -28,7 +28,7 @@ options cx88_alsa index=-2 options saa7134-alsa index=-2 options snd-atiixp-modem index=-2 -options snd-intel8x0m index=-2 +options snd-intel8x0 index=-2 buggy_semaphore=1 options snd-via82xx-modem index=-2 options snd-usb-audio index=-2 options snd-usb-caiaq index=-2
and after a reboot, the sound is working. Now dmesg
reports all right:
snd_intel8x0 0000:00:04.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 intel8x0_measure_ac97_clock: measured 53384 usecs (2576 samples) intel8x0: clocking to 48000
Journal
20121219
http://lists.debian.org/debian-amd64/2006/03/msg00520.html
Changing:
options snd-intel8x0m index=-2
To:
options snd-intel8x0m index=-2 buggy_semaphore=1
Doesn't help.
Removing the "m" - according to this website - does help!