|
I don't have one of these cards, so can't address specifics, but I do know you've got a lot of redundant stuff in modprobe.conf, including command lines for two different mixers. Below I've pasted a minimal version of your modprobe.conf which should still load all the required modules.
alias eth0 tulip
alias usb-controller uhci-hcd
alias snd-card-0 snd-emu10k1
alias sound-slot-0 snd-card-0
install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 && /usr/sbin/alsactl restore >/dev/null 2>&1 || :
remove snd-emu10k1 { /usr/sbin/alsactl store >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-emu10k1
A further tweak you could make to this is to change the 0 in sound-slot-0 to an asterisk:
alias sound-slot-* snd-card-0
The OSS and Card 0 stuff is all in the file modprobe.conf.dist, which is a list of default settings for modprobe.conf. With the minimal version of modprobe.conf above, you should be able to confirm that the OSS modules are still loading by issuing /sbin/lsmod in a terminal (as root). I don't know if alsamixer conflicts with aumix, but it's probably safer to do the volume settings for only one mixer, and since alsamixer is the native ALSA program it should be the one. I moved
the usb-controller line up mainly to make the file easier to read at a glance. Try it and see what happens. You also want to think about pulling the card out, rebooting, removing the soundcard configuration when prompted by kudzu, shutting down, reinstalling the card, booting, and letting kudzu configure the card again. Good luck!
|