📖 ~1 min read
Table of contents
Symptom & Impact
Audio devices appear but no sound output is produced after reboot into newer kernel.
Environment & Reproduction
Appears after kernel updates or codec module changes affecting ALSA and PipeWire.
uname -r
aplay -l
pactl info
systemctl --user status pipewire pipewire-pulse --no-pager
Root Cause Analysis
Kernel module mismatch, muted profile defaults, or stale PipeWire session state prevents stream routing.
Quick Triage
Check user services, default sink, and ALSA mixer state.
systemctl --user is-active pipewire wireplumber
pactl list short sinks
amixer scontrols
amixer get Master
Step-by-Step Diagnosis
Inspect driver binding and PipeWire logs while attempting playback.
lspci -k | grep -A3 -i audio
journalctl --user -u pipewire -n 100 --no-pager
speaker-test -t sine -f 440 -c 2

Solution – Primary Fix
Reload sound modules and reset PipeWire and WirePlumber state.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo alsa force-reload
systemctl --user restart pipewire pipewire-pulse wireplumber
rm -rf ~/.config/pipewire ~/.local/state/wireplumber
systemctl --user restart pipewire wireplumber

Solution – Alternative Approaches
Boot previous kernel temporarily to confirm regression scope.
sudo grub-reboot '1>2'
sudo reboot
uname -r
Verification & Acceptance Criteria
Accepted when test tones and desktop audio playback both work after reboot.
speaker-test -c 2 -t wav
aplay /usr/share/sounds/alsa/Front_Center.wav
pactl get-default-sink
Rollback Plan
If issue persists, pin known-good kernel package until driver fix lands.
apt-cache policy linux-image-generic
sudo apt-mark hold linux-image-generic linux-headers-generic
Prevention & Hardening
Track kernel/audio changes and keep a tested fallback kernel in GRUB.
sudo apt install linux-image-generic linux-headers-generic -y
grep menuentry /boot/grub/grub.cfg | head -n 10
Related Errors & Cross-Refs
Related errors include dummy output only, failed to create sink, and HDA codec initialization failures.
Related tutorial: View the step-by-step tutorial for Ubuntu 26.04 LTS.
View all Ubuntu 26.04 LTS tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Ubuntu audio stack documentation, PipeWire guides, and ALSA troubleshooting references.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today — we respond within one business day.