How to disable Auto-Mute Mode?
In alsamixer, there is an option called "Auto-Mute Mode", and it's enabled by default.
But now I want to disable it. I've tried different keys but failed.
Any idea? 0_0
Press right arrow to get to "auto-mute mode", then up or down arrow to change it, then Escape to exit.
You can make this automatic on boot by executing (perhaps in /etc/rc.local
):
/usr/bin/amixer -c 0 sset "Auto-Mute Mode" Disabled
Late answer.
I had the same problem, including @limited-atonement one.
To resume:
root@darkstar:~# amixer | grep -i mute
Simple mixer control 'Auto-Mute Mode',0
root@darkstar:~# amixer -c 0 sset 'Auto-Mute Mode' Disabled
amixer: Unable to find simple control 'Auto-Mute Mode',0
I solved it by running alsamixer
, then:
- F5 (show all controls)
- use arrows → to move until hitting the
<Auto-Mute>
control, which show as Enabled - use the minus - key to switch it to Disabled
- hit Esc to exit
- run
alsactl store
as root to save
Hope this help.