If you’ve recently upgraded to Ubuntu 24.04 and found yourself staring at the frustrating “Dummy Output” in your sound settings, you’re not alone.
This issue has affected thousands of Ubuntu users and can be particularly baffling because your system appears to recognize audio hardware, yet refuses to produce any sound. As someone who battled with this problem for weeks on my development workstation, I understand the frustration all too well.
In this comprehensive guide, I’ll walk you through several proven methods to resolve the “No Sound” issue in Ubuntu 24.04, explaining not just what to do, but why each solution works. Whether you’re an IT administrator managing multiple systems or a home user trying to restore your audio, these solutions should help you get your speakers working again.
The “Dummy Output” problem occurs when Ubuntu’s audio system (typically PulseAudio or PipeWire) fails to properly communicate with your system’s audio hardware. Despite your sound card being physically present and detected by the system, Ubuntu routes audio to a non-existent “dummy” device instead of your actual speakers or headphones.
In Ubuntu 24.04, this issue often appears after system updates, particularly kernel updates to version 6.8 and above. The problem typically manifests in one of these ways:
Read: Troubleshooting and Resolving Audio Issues in Ubuntu 24.04
Before attempting any fixes, it’s important to understand your current audio configuration. Open a terminal and run:
aplay -l
This command lists all recognized audio devices. You should see output similar to:
**** List of PLAYBACK Hardware Devices ****
card 0: PCH [HDA Intel PCH], device 0: ALC897 Analog [ALC897 Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: NVidia [HDA NVidia], device 3: HDMI 0 [PHL 271V8]
Subdevices: 0/1
Subdevice #0: subdevice #0
Another useful command to identify your current audio driver is:
inxi -A
This will show output like:
Audio:
Device-1: Intel CM238 HD Audio driver: snd_soc_avs
Device-2: NVIDIA GP107GL High Definition Audio driver: snd_hda_intel
API: ALSA v: k6.8.0-48-generic status: kernel-api
Server-1: PipeWire v: 1.0.5 status: active
Take note of the driver name (in this example, snd_soc_avs
and snd_hda_intel
), as this information will be crucial for our fixes.
Read: How to manage Audio using PulseAudio on Ubuntu 24.04
The most common cause of the “Dummy Output” issue in Ubuntu 24.04 is a problem with the audio driver. Recent kernels have switched to using the Sound Open Firmware (SOF) drivers for many Intel audio chipsets, but these can sometimes cause compatibility issues.
We’ll need to create or modify a configuration file to force Ubuntu to use the more reliable snd-hda-intel
driver instead.
sudo nano /etc/modprobe.d/audiofix.conf
Add the following lines to the file:
options snd-hda-intel dmic_detect=0
options snd-hda-intel model=generic enable=yes
blacklist snd_soc_avs
Note: Replace
snd_soc_avs
with whatever problematic driver you identified in theinxi -A
output. Common ones includesnd_soc_avs
,sof-audio-pci-intel-tgl
, orsnd_soc_skl
.
Save the file by pressing Ctrl+O
, then Enter
, and exit with Ctrl+X
.
sudo alsa force-reload
Sometimes, reinstalling the core audio packages can help:
sudo apt-get install --reinstall alsa-base pulseaudio
The timidity-daemon
package can sometimes conflict with audio settings:
sudo apt purge timidity-daemon
sudo reboot
After your system restarts, check if sound is working. If this solution didn’t work, don’t worry—we have more options to try.
Read: How to display your sound card details using the terminal on Ubuntu 22.04
If the generic driver configuration didn’t work, you might need to specify a more appropriate model for your specific hardware.
sudo nano /etc/modprobe.d/audiofix.conf
Replace the previous content with:
options snd-hda-intel dmic_detect=0
options snd-hda-intel model=laptop-amic enable=yes
If you have a Xiaomi/Redmi laptop like the Redmi Book Pro series, try this configuration instead:
options snd-sof-intel-hda-common hda_model=aspire-headset-mic
or:
options snd_sof_intel_hda_common hda_model=alc255-acer
Remember to reboot after making these changes.
If the driver configuration changes don’t solve your issue, downgrading to an older kernel version (specifically 6.5) often resolves the problem. This is a more drastic step but has proven effective for many users.
sudo apt list --installed | grep linux-image
sudo apt install linux-image-6.5.0-35-generic linux-headers-6.5.0-35-generic
Edit the GRUB configuration:
sudo nano /etc/default/grub
Modify the GRUB_DEFAULT
line to point to the older kernel:
GRUB_DEFAULT="Advanced options for Ubuntu>Ubuntu, with Linux 6.5.0-35-generic"
Save and exit the editor.
sudo update-grub
sudo reboot
After rebooting, verify you’re running the older kernel:
uname -r
The output should show 6.5.0-35-generic
or whichever kernel version you selected.
Some users have reported success using the OEM kernel, which often includes additional hardware support:
sudo apt install linux-image-6.8.0-1020-oem
After installation, reboot your system.
Sometimes, the issue can be temporarily resolved without any configuration changes:
This simple fix works because it restarts the user-level audio services, which can sometimes resolve temporary glitches.
After applying any of the solutions above, you can verify that the audio driver has changed by running:
inxi -A
If the fix worked, you should see that the driver has changed from something like snd_soc_avs
to snd_hda_intel
.
If you’re still having issues, the PulseAudio Volume Control application can provide more detailed control:
sudo apt install pavucontrol
pavucontrol
In the Configuration tab, you may see profiles marked as “unavailable.” Try selecting these profiles anyway, as sometimes they will become available after selection.
If you’re still troubleshooting, check the system logs for audio-related errors:
sudo dmesg | grep -i audio
Look for error messages related to audio drivers or devices. If you find errors like sof-audio-pci-intel-tgl ... error -2
, you can blacklist that specific problematic driver.
Understanding why these fixes work can help you maintain a stable audio setup in future Ubuntu updates:
snd-hda-intel
driver is older but more stable for many systems compared to newer SOF driversTo prevent audio issues after future Ubuntu updates:
inxi -A
/etc/modprobe.d/
files so you can restore them if neededThe “Dummy Output” no sound issue in Ubuntu 24.04 can be frustrating, but as we’ve seen, there are several effective solutions. From simple fixes like driver configuration adjustments to more involved solutions like kernel downgrades, one of these approaches should restore your audio functionality.
I hope this guide has helped you solve your audio issues in Ubuntu 24.04. Remember that Ubuntu’s strength is in its community—if you’ve found another solution that works, consider sharing it with others in the Ubuntu forums or Ask Ubuntu.
Ubuntu 24.04 includes kernel 6.8, which changed how certain audio hardware is handled. The switch to Sound Open Firmware (SOF) drivers for many Intel audio chipsets has caused compatibility issues with some hardware.
The driver configuration changes are safe and shouldn’t affect system stability. Kernel downgrades are generally safe but might mean missing out on security updates, so it’s better to use them as a temporary solution until a proper fix is available.
Not necessarily. Once you’ve configured the audio driver correctly, it should persist through updates. However, major kernel updates might reset some configurations, in which case you’d need to reapply the fix.
If none of these solutions work, consider filing a bug report with Ubuntu. Provide details about your hardware using lspci -v | grep -A7 -i "audio"
, aplay -l
, and inxi -A
output to help developers understand the issue.
Setting apt-mark hold
on working kernel packages can prevent automatic upgrades to problematic kernels:
sudo apt-mark hold linux-image-6.5.0-35-generic linux-headers-6.5.0-35-generic
Unfortunately, most reliable fixes require at least some command line usage. However, the logout-login fix requires no terminal commands and might work temporarily.
The post How to Fix No Sound (Dummy Output) Issue in Ubuntu 24.04 appeared first on net2.
This public beta enables the full Ubuntu Desktop experience on the Qualcomm Dragonwing™ QCS6490 and…
Time is running out to be in full compliance with the EU Cyber Resilience Act,…
Identity management is vitally important in cybersecurity. Every time someone tries to access your networks,…
Welcome to the Ubuntu Weekly Newsletter, Issue 889 for the week of April 20 –…
Introduction I just returned from RubyKaigi 2025, which ran from April 16th to 18th at…
One of my favourite authors, Douglas Adams, once said that “we are stuck with technology…