No Sound in Ubuntu or Linux Mint? Here’s How to Get Your Speakers Back
If your speakers have gone silent after a recent update or driver tweak, this guide will walk you through the most common fixes—without any fancy jargon. You’ll learn how to verify that ALSA and PulseAudio are actually doing their job, why adding yourself to the audio group matters, and a few quick tricks that usually restore sound in minutes.
No Sound Troubleshooting Basics
1. Check the obvious – make sure the output device isn’t muted or set to the wrong channel.
amixer sset Master unmute
A simple mute can be the culprit, and amixer shows you whether your “Master” control is actually on.
2. Verify ALSA sees your card – run a quick list of sound devices.
aplay -l
If you get back something like No such device, the kernel isn’t loading the driver at all.
3. Look for recent kernel changes – I’ve seen this happen after a bad driver update that removed snd-hda-intel from the initramfs.
lsmod | grep snd_hda_intel
If nothing appears, load it manually:
sudo modprobe snd-hda_intel
4. Reset PulseAudio – a corrupt user config can silence everything.
rm -r ~/.config/pulse pulseaudio --start
Why this helps: Removing the old state forces Pulse to rebuild its config from scratch.
5. Make sure your user is in the audio group – without it, you can’t access sound hardware even if everything else is fine.
groups | grep audio
If nothing shows up, add yourself:
sudo usermod -aG audio $USER # then log out and back in
6. Test with a raw PCM stream – this rules out PulseAudio entirely.
speaker-test -c2
If you hear the test tones, ALSA is fine; the problem lies in Pulse or its plugins.
7. Reinstall audio packages – sometimes the meta‑package gets corrupted during an upgrade.
sudo apt-get install --reinstall alsa-base pulseaudio
8. Check for blacklisted modules – a recent update might have added your sound driver to /etc/modprobe.d/blacklist.conf.
Open the file and look for lines like blacklist snd_hda_intel. If you find one, comment it out (add a # at the start) and reboot.
9. If all else fails, try a newer kernel – especially if your hardware is recent.
sudo apt-get install linux-generic-hwe-24.04
After installing, reboot and see if sound returns.
These steps cover over 90 % of the “no sound” headaches I’ve seen in Ubuntu and Linux Mint forums. Pick the one that matches your symptom (missing device, muted output, or a full audio freeze), run it, and you’re usually back to music in under five minutes.
Hope this gets your audio back—good luck!