Hi Slim,
slim wrote:
Hi all, I have this in my modprobe.conf file, it looks munged to me.. what do you all think? TIA
This creates an alias for the network card module e100.
alias eth0 e100This creates an alias for the sound card modules snd-ens1371
alias snd-card-0 snd-ens1371This loads the module using the command /usr/sbin/alsactl
This removes the module using the command /usr/sbin/alsactlinstall snd-ens1371 /sbin/modprobe --ignore-install snd-ens1371 && /usr/sbin/alsactl restore >/dev/null 2>&1 || :
This creates an alias for usb module uhci-hcdremove snd-ens1371 { /usr/sbin/alsactl store >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-ens1371
alias usb-controller uhci-hcd
more info gives
man modprobe.conf
it describes pretty good what modprobe.conf does.
Hth.
Alex