I am using alsa-driver, alsa-lib, and alsa-utils 1.0.8. I thought I had sound set to work at boot with the following line in my /etc/rc.d/rc.local file:
Code:
#!/bin/sh
#
# /etc/rc.d/rc.local: Local system initialization script.
#
# Put any local setup commands in here
#bring up alsa
alsactl restore
#commands to bring up my wpa-psk wlan0 connection
modprobe ndiswrapper
ifconfig wlan0 192.168.0.111
route add -net default gw 192.168.0.1
wpa_supplicant -Dndiswrapper -iwlan0 -c/etc/wpa_supplicant.conf -B
Unfortunately, I hear sound during the Slackware splash screen up until the "Restoring Session" message is displayed and the it all goes silent. It isn't until I issue the command "alsactl restore" in a terminal that my sound works again? Why would my KDE session decide to automatically reverse something I have in a startup script?