Howdy All!
In short:
- Is my modules.conf ok? (File contents included below.)
- How do I know my ALSA modules are installed correctly since I cannot run "/sbin/modprobe snd-intel8x0"?
When I run the soundcard detection applet it reports:
Intel Corp.
82801DB AC'97 Audio
i810_audio
And when I click the button to play test sound, I see an error dialog with:
The i810_audio driver could not be loaded. This soundcard may not be compatible with Red Hat Linux.
When I run modprobe on i810_audio and snd-intel8x0, I get the following:
[robertmarkbram@robertmarkbram robertmarkbram]$ /sbin/modprobe i810_audio
/lib/modules/2.4.20-8/kernel/drivers/sound/ac97_codec.o: create_module: Operation not permitted
/lib/modules/2.4.20-8/kernel/drivers/sound/ac97_codec.o: insmod /lib/modules/2.4.20-8/kernel/drivers/sound/ac97_codec.o failed
/lib/modules/2.4.20-8/kernel/drivers/sound/ac97_codec.o: insmod i810_audio failed
[robertmarkbram@robertmarkbram robertmarkbram]$ /sbin/modprobe snd-intel8x0
modprobe: Can't locate module snd-intel8x0
[robertmarkbram@robertmarkbram robertmarkbram]$
What worries me is that I do not have a /lib/modules/2.4.20-8/kernel/sound directory, so where are my ALSA modules?
I installed ALSA from /usr/src/alsa/ if that is any indication.
To set up my files, I followed the advice given here by drphibes:
http://www.linuxquestions.org/questi...threadid=50826
My /etc/modules.conf and /etc/rc.d/rc.modules files are shown below.
Any help would be most appreciated!
Rob
---/etc/modules.conf-------------------------------------------
alias usb-controller ehci-hcd
alias usb-controller1 usb-uhci
alias ieee1394-controller ohci1394
alias eth0 bcm4400
# alsa
alias char-major-116 snd
alias char-major-14 soundcore
alias snd-card-0 snd-intel8x0
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
# restore mixer settings from /etc/asound.state
post-install snd-intel8x0 /usr/sbin/alsactl restore
# Save mixer settings to /etc/asound.state
pre-remove snd-intel8x0 /usr/sbin/alsactl store
# prevent syslog messages
alias snd-card-1 off
alias sound-service-1-0 off
alias sound-service-1-1 off
alias sound-service-1-3 off
alias sound-service-1-8 off
alias sound-service-1-12 off
alias snd-card-2 off
alias sound-service-2-0 off
alias sound-service-2-1 off
alias sound-service-2-3 off
alias sound-service-2-8 off
alias sound-service-2-12 off
alias snd-card-3 off
alias sound-service-3-0 off
alias sound-service-3-1 off
alias sound-service-3-3 off
alias sound-service-3-8 off
alias sound-service-3-12 offalias sound-slot-0 i810_audio
post-install sound-slot-0 /bin/aumix-minimal -f /etc/.aumixrc -L >/dev/null 2>&1 || :
pre-remove sound-slot-0 /bin/aumix-minimal -f /etc/.aumixrc -S >/dev/null 2>&1 || :
---end-------------------------------------------
----/etc/rc.d/rc.modules-------------------------
# alsa sound
/sbin/modprobe soundcore
/sbin/modprobe snd-intel8x0
---end-------------------------------------------