Problems with modprobe and moreover with modprobe.conf I have a problem with my modprobe.conf: I try to load the module
"snd-pcm-oss", the OSS Alsa compatiblity layer, at startup, though I
added it to my modprobe.conf it is not loaded at startup. Do you see
any mistakes in my configuration. And yes, it is possible to load
snd-pcm-oss as root.
Regards, Max
<"/etc/modprobe.conf">
alias eth0 via-rhine
alias eth1 eth1394
install snd-via82xx { /usr/sbin/alsactl restore >/dev/null 2>&1 || : ;
}; /sbin/modprobe --ignore-install snd-via82xx dxs_support=5
install snd-pcm-oss /sbin/modprobe snd-pcm-oss
alias snd-card-0 snd-via82xx
alias snd-slot-0 snd-pcm-oss
alias usb-controller uhci-hcd
alias char-major-81 bttv
options char-major-81 radio=1
alias ieee1394-controller ohci1394
remove snd-pcm-oss /sbin/modprobe -r snd-pcm-oss
remove snd-via82xx { /usr/sbin/alsactl store 0 >/dev/null 2>&1 || : ;
}; /sbin/modprobe -r --ignore-remove snd-via82xx
</"/etc/modprobe.conf"> |