Chris Baessler wrote:
>>Hello,
>>
>>I've a problem with my soundcard with Fedora Core 3. "lspci -v" shows me the
>>following device
>>
>>00:1b.0 Class 0403: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) High
>>Definition Audio Controller (rev 03)
>> Subsystem: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) High
>>Definition Audio Controller
>> Flags: bus master, fast devsel, latency 0, IRQ 5
>> Memory at d8100000 (64-bit, non-prefetchable) [size=16K]
>> Capabilities: [50] Power Management version 2
>> Capabilities: [60] Message Signalled Interrupts: 64bit+ Queue=0/0
>>Enable-
>> Capabilities: [70] Express Unknown type IRQ 0
>> Capabilities: [100] Virtual Channel
>> Capabilities: [130] Unknown (5)
>>
>>Windows XP shows the soundcard as C-Media High Definition Audio Device (AZA AC
>>97).
>>
>>system-config-soundcard "Es wurden keine Soundkarten ermittelt" --> "No
>>soundcards was found"
>>
>>Are there drivers or kernel moduls for this (Intel or C-Media OnBoard
>>soundcard). Or are there other manuals for it?
>>
>>
>>
>>
>>You need the snd-azx driver which is part of ALSA 1.0.8, either download it and compile it yourself or see if you could get the RPMs for it.
Hello,
Thanks :-) I 've updatet to ALSA 1.0.8, but I get the same error from system-config-soundcard "Es wurden keine Soundkarten ermittelt" --> "No soundcards was found".
Greetings Chris
From Peter Zubaj ALSA-User mailing list:
Peter Zubaj wrote:
Hi,
If you mean HD Audio, then this driver is not in kernel. You have to compile alsa-driver 1.0.8rc1 (www.alsa-project.org) from source. Use snd-azx driver.
Peter Zubaj
To configure the driver, just do this (manually) in your /etc/modprobe.conf file:
#install snd-azx /sbin/modprobe --ignore-install snd-azx && /usr/sbin/alsactl restore >/dev/#null 2>&1 || :
#remove snd-azx { /usr/sbin/alsactl store >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-#remove snd-azx
# ALSA portion alias char-major-116 snd alias snd-card-0 snd-azx # module options should go here
# OSS/Free portion alias char-major-14 soundcore alias sound-slot-0 snd-card-0
# card #0 alias sound-service-0-0 snd-mixer-oss alias sound-service-0-1 snd-seq-oss alias sound-service-0-3 snd-pcm-oss alias sound-service-0-8 snd-seq-oss alias sound-service-0-12 snd-pcm-oss
The commented lines above are the default lines added by system-cofig-soundcard. If you have lines like those, either remove them or delete them. Once you do this, try probing the driver with /sbin/modprobe snd-azx, then check with /sbin/lsmod | grep snd. Now run alsamixer to configure the card volumes (in ALSA 1.0.8 this chanted slightly, you will have capture settins in a different "tab", to access them press F4 [F3 returns you to playback] or F5 [to see all controls]), when done simply press esc, and to store the values, restart the alsasound service with /sbin/service alsasound restart. All this as root, of course. Good luck.