On Mon, 2004-11-29 at 20:26 +1100, nicholas manojlovic wrote: > Hiya, > > not sure if this is something that has been mentioned before but I'm > having trouble getting my volume levels to stick once FC3 is > restarted/rebooted. I use the Gnome Alsamixer and it is always at volume > 0% and muted every time I start up. Not a huge deal but fairly annoying. > > Unfortunatly # 'alsactl store' doesnt give me any error messages and > appears to work, although doesnt fix the problem. > > Anyone else come across this or found a solution? > > Cheers > Niko > My modprobe.conf file has this and works perfectly (set up by system- config-soundcard) ---------------- alias snd-card-0 snd-intel8x0 options snd-card-0 index=0 install snd-intel8x0 /sbin/modprobe --ignore-install snd-intel8x0 && /usr/sbin/alsactl restore >/dev/null 2>&1 || : remove snd-intel8x0 { /usr/sbin/alsactl store >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-intel8x0 ------------------ Note that this is actually 4 lines from modprobe.conf, but line wrapped by the mailer There is one line that does the alsactl restore and another that does the alsactl store.