How to Fix 'Dummy Output' Audio on Ubuntu
Complete guide to resolving the 'Dummy Output' audio issue on Ubuntu. Step-by-step troubleshooting for PulseAudio, PipeWire, ALSA, and audio driver problems.
How to Fix "Dummy Output" Audio on Ubuntu
The "Dummy Output" issue means Ubuntu cannot detect your sound card. Follow these steps in order until the problem is resolved.
Ubuntu 22.04 and later (PipeWire):
systemctl --user restart pipewire pipewire-pulse wireplumberUbuntu 20.04 and earlier (PulseAudio):
pulseaudio --kill
pulseaudio --startTip: Check your audio after this step. If it works, you're done!
ALSA is the low-level audio layer. Reloading it can resolve detection issues.
sudo alsa force-reloadThen reboot:
sudo rebootRun the following to list all detected sound cards:
aplay -l- ✅ Card is listed — the issue is with PulseAudio/PipeWire (continue to Step 4)
- ❌ No soundcards found — it's a driver or hardware issue (skip to Step 6)
Your audio channels might be muted at the ALSA level.
alsamixer- Use left/right arrow keys to navigate channels
- Press M to unmute any channel showing
MMat the bottom - Press F6 to select a different sound card if needed
- Press Esc to exit
Then save the settings:
sudo alsactl storeFor PipeWire (Ubuntu 22.04+):
sudo apt install --reinstall pipewire pipewire-pulse wireplumber
systemctl --user restart wireplumber pipewire pipewire-pulseFor PulseAudio (Ubuntu 20.04 and earlier):
sudo apt remove --purge pulseaudio pulseaudio-utils
sudo apt install pulseaudio pulseaudio-utils
sudo rebootAlso reinstall ALSA base packages:
sudo apt install --reinstall alsa-base alsa-utils
sudo alsa force-reloadIf your sound card wasn't detected in Step 3, you likely have a driver issue.
Install recommended drivers automatically:
sudo ubuntu-drivers autoinstall
sudo rebootOr update your kernel (which includes newer drivers):
sudo apt update && sudo apt full-upgrade
sudo rebootVerify your audio hardware is visible to the system at all.
For built-in/PCIe audio:
lspci | grep -i audioFor USB audio devices:
lsusbWarning: If your device doesn't appear here, check that onboard audio is enabled in your BIOS/UEFI settings.
If all software steps fail:
- Restart your PC and enter BIOS/UEFI (usually Del, F2, or F10 on boot)
- Navigate to Advanced or Onboard Devices settings
- Make sure HD Audio or Onboard Audio is set to Enabled
- Save and exit
Still Not Working?
Check your system logs for audio-related errors:
dmesg | grep -i audio
journalctl --user -u pipewire --since "1 hour ago"You can also post the output of these commands to the Ubuntu Forums or Ask Ubuntu for community help.
Tested on Ubuntu 20.04, 22.04, and 24.04