I am just wondering how to turn off sound at startup? I searched the web, and found a couple of solutions like:
- Write "
amixer sset Master off
" in/etc/rc.local
- Use
sudo alsactl store
But neither works.
EDIT: I now realize why the amixer command in rc.local doesn't work. This is because the command executes before the alsa driver is loaded. So one solution is to use (sleep 1; amixer sset Master off) in rc.local.