I have updated my packages using pacman -Syu today. I have also removed orphans packages. After rebooting, I noticed that no sound was coming out of my computer, whatever the speakers I was using.
As you can see, in the system configuration panel, the audio output is flagged as “inactive:”
Okay, so then lets put that a little further… (but BEFORE… just to make shure that it is not a simple little bug… do a complete reboot again) - sometimes that already helps. And do a complete “cleanup” after the update: Manjaro System Maintanance
If this does not help - follow up with these steps:
Check your audio levels in alsamixer to ensure nothing is muted. Run alsamixer in the terminal and use the arrow keys to navigate and adjust volumes. Ensure that the master and speaker channels are unmuted and set to an appropriate level.
Next, verify the sound configuration by running the following commands to list and test the playback devices:
List all sound cards and their details:aplay -l
Then test the sound output:speaker-test -c 2
Your pulseaudio service appears to be running without issues to me. Here are some additional troubleshooting steps:
Check the output devices in PulseAudio:
Open pavucontrol (PulseAudio Volume Control) and ensure the correct output device is selected and not muted.
Recreate PulseAudio configuration files:
Sometimes corrupted configuration files can cause problems. Try resetting the configuration files:
Remove the PulseAudio configuration directory: rm -r ~/.config/pulse
Restart PulseAudio: pulseaudio -k followed by pulseaudio --start (as you learned already above)
Test audio output with ALSA:
To ensure it’s not a PulseAudio-specific issue, test audio output directly with ALSA:
Play a test sound:aplay /usr/share/sounds/alsa/Front_Center.wav
Check log files: Inspect PulseAudio log files for errors. You can do this with journalctl: journalctl -xe | grep pulseaudio
4. Fallback to ALSA:
If all else fails, temporarily disable PulseAudio and use ALSA to see if the issue is resolved:
Stop PulseAudio:systemctl --user stop pulseaudio Test with ALSA:speaker-test -c 2
Let us know of the results of these steps. - Hope that helps. Cheers
I installed pavucontrol, changed the output device a few times and it ended up working. The outputs are no longer disabled in the sound configuration panel. Thank you!