π ~1 min read
Table of contents
Symptom & Impact
Administrators observe: Ubuntu 26.04 LTS – PipeWire service starts but no audio output is available. Calls and media playback fail silently.
Environment & Reproduction
Issue appears after profile changes, Bluetooth transitions, or per-user config corruption.
# Baseline context
lsb_release -a
systemctl --user status pipewire pipewire-pulse wireplumber --no-pager
pactl info
aplay -l
journalctl --user -u pipewire -n 120 --no-pager
Root Cause Analysis
Broken wireplumber policy or invalid cached device state can prevent active sink selection.
Quick Triage
List sinks/sources and confirm default sink mapping.
# Quick triage
pactl list short sinks
pactl list short sources
pactl get-default-sink || true
wpctl status
Step-by-Step Diagnosis
Inspect user-level logs and remove stale pipewire state for retest.
# Detailed diagnosis
journalctl --user -u wireplumber -u pipewire -u pipewire-pulse --since '2 hours ago' --no-pager
ls -la ~/.config/pipewire ~/.local/state/wireplumber 2>/dev/null || true

Solution – Primary Fix
Reset user audio state and restart PipeWire stack.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
# Primary fix
rm -rf ~/.config/pipewire ~/.local/state/wireplumber
systemctl --user daemon-reload
systemctl --user restart wireplumber pipewire pipewire-pulse
wpctl status

Solution – Alternative Approaches
Reinstall audio stack packages if service units are damaged.
# Alternative
sudo apt-get install --reinstall -y pipewire pipewire-pulse wireplumber alsa-utils
systemctl --user restart wireplumber pipewire pipewire-pulse
Verification & Acceptance Criteria
Default sink is active and test playback succeeds.
# Verify
wpctl status
pactl get-default-sink
speaker-test -t sine -f 440 -l 1
Rollback Plan
Restore previous user audio configs if custom routing is required.
# Rollback
# Restore backup of ~/.config/pipewire and ~/.local/state/wireplumber if taken
Prevention & Hardening
Keep consistent audio profiles and avoid overlapping PulseAudio-era custom scripts.
# Hardening
crontab -l | grep -Ei 'pulseaudio|pipewire' || true
systemctl --user list-units | grep -E 'pipewire|wireplumber'
Related Errors & Cross-Refs
Related patterns include dummy output only and no default sink available.
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
PipeWire and WirePlumber administration docs for Ubuntu.
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.