2

I am using Ubuntu 12.04 in combination with Awesome window manager. Most of the stuff ubuntu provides I don't use.

I adjust my audio volume through scripts with amixer or manually with alsamixer. However after a reboot, my audio is muted and the only way to unmute it is through the gnome-control-center sound GUI.

I prefer terminal so I would like to know how I can unmute my audio without having to open up a GUI. Also, should I maybe remove pulseaudio, since I always use alsamixer anyways?

Carlito
  • 253

2 Answers2

3

In case we want to keep pulseaudio we may also unmute a sink from the command line.

By using the Pulseaudio Command Line Interface we will get the index of available sinks

pacmd list-sinks

We then can unmute the sink with

pacmd set-sink-mute <index> 0
Takkat
  • 144,580
1

If the problem is that every time your reboot you need to unmute then you can avoid the problem completely by unmuting manually once then run

sudo alsactl store

Next time you reboot, your settings will be automatically restored.