You can even try this, it worked for me.*
sudo apt-get purge pulseaudio
sudo apt-get clean && sudo apt-get autoremove
Reboot. Open a terminal again and type (ignore any errors with the rm
command):
rm -r ~/.pulse ~/.asound* ~/.pulse-cookie ~/.config/pulse
sudo apt-get install pulseaudio
Note: if you get E: Unable to correct problems, you have held broken packages.
error, then you can try:
sudo aptitude install pulseaudio
(if you don't have aptitude on your machine: sudo apt-get install aptitude
)
sudo alsa force-reload
pavucontrol
The last command should restart the PulseAudio server and launch a desktop application for its settings.
*Note: Using apt
instead of apt-get
may work as well.
Reference = https://askubuntu.com/a/435221/1013762
Hope this helps.