Symptoms & Diagnosis
Ubuntu 24.04 Noble Numbat relies on PipeWire as its default audio server. When sound fails, it often manifests as a “Dummy Output” in settings, crackling audio, or a complete lack of volume control icons.
Before applying fixes, you must identify the source of the failure. Use the following diagnostic commands to check if your hardware is recognized and which service is currently managing your audio streams.
| Command | Purpose |
|---|---|
| lspci | grep -i audio | Checks if the system detects the physical audio hardware. |
| pactl info | Verifies if PulseAudio or PipeWire is running as the sound server. |
| aplay -l | Lists all playback devices recognized by the ALSA driver. |
If these commands return empty results or errors, the issue is likely driver-related. If they show active devices but no sound plays, the problem resides in the software configuration or muted channels.

Troubleshooting Guide
The most effective way to fix Ubuntu 24.04 sound errors is to reset the PipeWire and WirePlumber services. These services manage modern Linux audio routing and can sometimes hang during session transitions.
Start by restarting the core audio services using the systemctl user command. This does not require root privileges but affects your current session.
systemctl --user restart pipewire pipewire-pulse wireplumber
If the sound device is still showing as “Dummy Output,” your ALSA (Advanced Linux Sound Architecture) configuration might be locked. You can force a reload of the sound modules with the following command:
sudo alsa force-reload
Sometimes, the issue is as simple as a hardware-level mute that the GUI doesn’t show. Open the terminal-based mixer to ensure all “Master” and “PCM” columns are turned up and not marked with an “MM” (Muted).
alsamixer
Use the arrow keys to adjust volume and press ‘M’ to unmute channels. If these steps fail, you may need to reinstall the audio stack to repair corrupted configuration files:
sudo apt update --fix-missing
sudo apt install --reinstall alsa-base alsa-utils pulseaudio pipewire
Prevention
To prevent future sound failures in Ubuntu 24.04, avoid manual overrides of the PipeWire configuration unless necessary. Standard system updates often include patches for audio drivers and firmware.
Ensure your system is always up to date by running regular maintenance commands. This ensures that the kernel stays compatible with your specific hardware’s audio codecs.
sudo apt update && sudo apt upgrade -y
Lastly, be cautious with third-party audio “enhancers” or PPAs. These often conflict with the default PipeWire implementation in Noble Numbat, leading to the “Dummy Output” error after a system reboot.