I just upgraded from FC1 to FC2 and for some reason my soundcard was not set up properly. Running /usr/bin/system-config-soundcard detected it and solved the problem for the current session, but after rebooting the kernel-module was not started. Also running # modprobe snd-ens1370 fixed the problem for the current session but it did not persist after rebooting. Where should I make changes to load this at each boot time? contents of: /etc/modprobe.conf # Note: for use under 2.4, changes must also be made to modules.conf! alias eth0 tulip alias usb-controller uhci-hcd alias snd-card-0 snd-ens1370 install sound-slot-0 /sbin/modprobe --first-time --ignore-install sound-slot-0 && { /bin/aumix-minimal -f /etc/.aumixrc -L >/dev/null 2>&1 || :; } remove sound-slot-0 { /bin/aumix-minimal -f /etc/.aumixrc -S >/dev/null 2>&1 || :; } ; /sbin/modprobe -r --first-time --ignore-remove sound-slot-0 contents of: /etc/modules.conf alias eth0 tulip alias usb-controller usb-uhci alias sound-slot-0 es1370 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 || : # Note: for use under 2.6, changes must also be made to modprobe.conf! or should I just put the modprobe snd-ens1370 in /etc/rc.local? Thanks for your help.