Ubuntu 18.04: Audio doesn't work unless I switch between outputs

14,917

Option 1

Please, run in the terminal:

sudo alsa force-reload

This will reload ALSA sound driver modules in case they were modified by an upgrade, reinstall or install for example and the old ones are still in use as users tend to avoid reboots sometimes or do not think a reboot is needed after such upgrades.

Option 2

Please, run in the terminal:

alsamixer

You will then be presented with a screen like this:

screenshot

Please, check if the speakers or any audio output is muted and unmute it.

MM means mute and OO means unmute.

Then exit when done by pressing Esc

Option 3

Old pulseaudio configuration files can sometimes get corrupted or conflict with newer versions of pulseaudio after package / system upgrades. To fix this please follow the steps below:

  • Back up ~/.config/pulse/ configuration directory to ~/.config/pulse_old/ by running the following command in the terminal:

    mv  ~/.config/pulse/ ~/.config/pulse_old/
    
  • After that, reboot your system to build new pulseaudio configuration files. A new ~/.config/pulse/ directory will be created automatically.

  • Test your audio now.

If, somehow, after applying this fix you decide to go back to the previous state before applying the fix, please follow the steps below:

  1. Run the following command in the terminal:

    rm -r  ~/.config/pulse/
    
  2. Run the following command in the terminal:

    mv  ~/.config/pulse_old/ ~/.config/pulse/
    
  3. Reboot your system.

However, if all is okay and the problem is fixed, you can remove the backed up old configuration directory ~/.config/pulse_old/ to free space ( if you wish ) by running the following command in the terminal:

rm -r  ~/.config/pulse_old/
Share:
14,917
otpabu
Author by

otpabu

Updated on September 18, 2022

Comments

  • otpabu
    otpabu over 1 year

    On my fully updated Ubuntu 18.04.3 system, audio doesn't work unless I switch between outputs. When I boot my PC, the right output (stereo speakers) is already selected by default, but there is no audio from Chromium, Firefox, VLC or any other program. However, the GNOME speakers test works. I can hear "front left" and "front right" from there, but no audio from other programs. In order to fix that, I can simply switch to another audio output (e.g. HDMI out) and then switch back to the stereo speakers, and the audio will magically work. Any idea why? It's not a big deal because it takes a couple of seconds to switch between outputs, but it's kind of annoying to do that after every reboot.

    • Raffa
      Raffa almost 5 years
      Is this something new that append lately or it was like this since you first installed Ubuntu on your machine?
    • otpabu
      otpabu almost 5 years
      It started happening yesterday. My Ubuntu install is a few months old and is quite minimal, as I only have a few essential programs installed. I didn't change anything, only updated the system as I do every 2-3 days or so.
    • Robert Miller
      Robert Miller almost 5 years
      I found that this solution worked - seems to be fine now askubuntu.com/questions/963756/…
  • ivizot
    ivizot about 4 years
    Option #3 worked for me! Thank you!
  • Bhaskar
    Bhaskar about 4 years
    This disabled my previously working bluetooth audio in Ubuntu 20.04.
  • Alexey
    Alexey about 4 years
    Wait, wouldn't with method 2 you end up losing all the packages that depend on alsa-base and pulseaudio, like ubuntu-desktop metapackage? It seems to me that you would.
  • Bhaskar
    Bhaskar about 4 years
    @Alexey Yes, that's what happened in my case and the pulseaudio-module-bluetooth package got uninstalled.
  • Raffa
    Raffa about 4 years
    @Alexey Thank you, I removed that option. @bhaskar These packages can be reinstalled with sudo apt install alsa-base libcanberra-pulse pulseaudio pulseaudio-module-bluetooth ubuntu-desktop ubuntu-desktop-minimal
  • Alexey
    Alexey about 4 years
    Would you mind sharing why you think these methods can work, or where you got this information?
  • Raffa
    Raffa about 4 years
    @Alexey sudo alsa force-reload will reload ALSA sound driver modules in case they were modified by an upgrade/reinstall/install for example and the old ones are still in use as users tend to avoid reboots sometimes or do not think a reboot is needed after such upgrades. The other two methods are well explained in the answer I think. It is basic sound troubleshooting no more and no less. Again thank you.
  • undefinederror
    undefinederror almost 4 years
    @raffa you're the man! Option #3 did it for me (updgrade 18.04 => 20.04)
  • Polypheme
    Polypheme over 3 years
    option 3 worked for me on Ubuntu 20.04LTS : I could connect to my bluetooth speaker but even thoug I chose it as sound output, the sound would still come out of my HDMI screen. Now it works : thank you !
  • Stefan
    Stefan about 3 years
    Worked for me on ubuntu 20.04, thank you! Now music comes out of my bluetooth device again :-)