You are not logged in.
Pages: 1
Hello,
I have problem with the on-board sound (alsa doesnt' seem to support it too well: m3n8200). So I bought a stand-alone sound card which is working, well the playback part. Anyways, I'm trying to disable the loading of snd-hda-intel by putting
MOD_BLACKLIST=(pcspkr snd-hda-intel)in rc.conf. But it doesn't work. lsmod still reports that it's been loaded. Why?
Offline
Put it in the MODULES array with a ! in front. Like this:
MODULES=(!pcspkr !snd-hda-intel)
Offline
That has the same effect.
Offline
That has the same effect.
Meaning it doesn't work?
Also, I was under the impression that the MOD_BLACKLIST section was depreciated. I may be wrong.
Offline
soupcan: You're right. The MOD_BLACKLIST is deprecated. So here is my line in rc.conf:
MODULES=(!pcspkr !snd_hda_intel r8169 slhc snd-mixer-oss snd-pcm-oss snd-hwdep snd-page-alloc snd-pcm snd-timer snd soundcore vboxdrv fuse loop)I've also noticed that rc.conf uses '-' like 'snd-mixer-oss' while the actual module itself uses underscore like 'snd_mixer_oss'. I've tried both for !snd_hda_intel and it's still loaded.
Offline
Try creating /etc/modprobe.d/intel-sound and puting this into:
blacklist snd-hda-intelOffline
Mystery solved: I have a /etc/modprobe.d/sound.hda which looks like:
alias snd-card-0 snd-hda-intel
alias sound-slot-0 snd-hda-intelI still don't understand the usage of '-' and '_' though.
Thanks.
Offline
Pages: 1