Affected versions: Ubuntu 26.04 LTS

📖 ~1 min read

Table of contents
  1. Symptom & Impact
  2. Environment & Reproduction
  3. Root Cause Analysis
  4. Quick Triage
  5. Step-by-Step Diagnosis
  6. Solution – Primary Fix
  7. Solution – Alternative Approaches
  8. Verification & Acceptance Criteria
  9. Rollback Plan
  10. Prevention & Hardening
  11. Related Errors & Cross-Refs
  12. References & Further Reading

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
Illustrative mockup for ubuntu-26-04-lts — terminal_or_shell
Diagnostic output for audio/pipewire-alsa — Illustrative mockup — Progressive Robot

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
Illustrative mockup for ubuntu-26-04-lts — log_or_console
Resolution output for audio/pipewire-alsa — Illustrative mockup — Progressive Robot

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 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.