-
-
Notifications
You must be signed in to change notification settings - Fork 45
Troubleshooting
Symptoms: Audio plays through laptop speakers instead of your DAC, or no sound at all.
Fix:
- Go to Settings > Audio
- Verify the correct Output Device is selected
- If using PipeWire, ensure your DAC is set as the default sink:
# List available sinks pactl list sinks short # Set your DAC as default pactl set-default-sink <sink-name>
- Restart QBZ after changing the audio device
Symptoms: Your DAC display shows 48000 Hz regardless of the track's actual sample rate.
Fix:
- Switch to ALSA Direct backend for guaranteed bit-perfect output
- If using PipeWire, enable Force Bit-Perfect in Settings > Audio
- Verify with a known Hi-Res track (96 kHz or 192 kHz) — your DAC display should match
Possible causes:
- Buffer too small — increase Stream Buffer in Settings > Audio
- System under load — close resource-heavy applications
- USB DAC power — try a powered USB hub or a different USB port
- Verify the DAC is connected and powered on
- Check if the system sees it:
# List ALSA devices aplay -l # List PipeWire devices pw-cli list-objects Node
- Try unplugging and reconnecting the DAC
- Restart QBZ
QBZ 2.0+ is a native Slint app and renders through one of three tiers — GPU
(wgpu), GPU compatibility (OpenGL), or Software (CPU) — auto-selected
for your hardware. Hardware acceleration is on by default. Most rendering
problems are fixed by forcing a lower tier with the QBZ_RENDERER env var.
Quick fix — drop to the OpenGL compatibility tier:
QBZ_RENDERER=gl qbzIf that still fails — force pure software rendering:
QBZ_RENDERER=software qbzFlatpak:
QBZ_RENDERER=software flatpak run com.blitzfc.qbzYou cannot get permanently stuck on a bad renderer: if a forced choice never
reaches a usable state, QBZ auto-reverts to Auto on the next launch. Launch
from a terminal to watch the tier decision ([renderer] ... lines).
In a VM without GPU passthrough, the GPU tier can bind a software Vulkan adapter and CPU-rasterize the whole UI. Force the lighter pure-software renderer:
QBZ_RENDERER=software qbzThe app-wide dynamic background and immersive shader scenes need the GPU (wgpu) tier. On the GL or Software tiers they're unavailable by design — the rest of the UI is fully functional.
For the full renderer model, the Settings controls (Rendering backend, Preferred GPU), the auto-degradation ladder, and every environment variable, see the dedicated Composition page.
QBZ renders natively on both Wayland and X11 — there's no Force-X11 toggle
anymore (that was a WebKit-era knob). If you hit a GPU-init issue on one session
type, the QBZ_RENDERER=gl / software fallbacks above are the fix, independent
of the display server.
-
If it's GPU-related, force a lower renderer tier (see Graphics Issues above):
QBZ_RENDERER=gl qbz # or QBZ_RENDERER=software qbz -
Check logs for errors — just launch from a terminal to see startup output, including the renderer decision:
qbz
-
A forced renderer that fails auto-reverts to Auto on the next launch, so a plain relaunch often clears a GPU-init crash on its own.
If QBZ opens to a broken or blank view, it may be corrupted UI/session state. The renderer choice and interface prefs live in a JSON file; per-user session state lives in a SQLite DB:
# Interface prefs (theme, renderer, last view, etc.):
# ~/.local/share/qbz/ui_prefs.json
# Per-user session database:
# ~/.local/share/qbz/users/<user-id>/session.dbDelete or rename the relevant file to reset that state, then relaunch. Resetting
the renderer key in ui_prefs.json to "auto" reverts a bad renderer choice.
On Linux, QBZ is single-instance: launching a second copy raises the existing
window (via a D-Bus Present() call) instead of opening a new one. Passing a
Qobuz link to a second launch opens that link in the running instance. If a
crashed instance leaves a stale lock and QBZ refuses to start, ensure no qbz
process is still running (pgrep qbz) before relaunching.
- Verify your Qobuz credentials work on the Qobuz website
- Check your internet connection
- If you recently changed your Qobuz password, you may need to re-login in QBZ
Ensure PipeWire permissions are granted:
# Check permissions
flatpak info --show-permissions com.blitzfc.qbz
# Reset permissions if needed
flatpak override --user --reset com.blitzfc.qbzFlatpak sandboxes file access. Grant access to your music directories:
flatpak override --user --filesystem=/path/to/your/music com.blitzfc.qbzIf tracks fail to play with server errors, QBZ automatically retries up to 4 times with increasing delays (1s, 2s, 4s) and falls back to lower quality.
Signs of Qobuz server issues:
- Orange warning triangle in the player bar (degraded indicator)
- "Streaming issue" dialog appearing
- Tracks that play fine at other times failing repeatedly
What you can do:
- Let QBZ handle it — the retry system resolves most transient issues
- Set "When quality retries fail" to "Always try lowest quality" in Settings > Audio to avoid the dialog
- Wait a few minutes — Qobuz server issues are usually temporary
QBZ has a built-in log viewer and diagnostics report — you rarely need to hunt through files. Both are under Settings > Developer:
- Application logs opens the in-app log viewer over QBZ's live in-memory log ring. It has auto-tail, Copy all (copies a full, secret-redacted diagnostics bundle — system info plus the live log lines), and Upload, which posts that bundle to a public paste and gives you a shareable URL to drop into a bug report. Secrets and tokens are redacted before anything leaves your machine.
- Diagnostics is an inline panel (display server, GPU vendors, detected GPU name, desktop environment, VM status, the active renderer tier and why it was chosen, and more). Export to clipboard copies the whole report.
When filing a bug, the uploaded log URL or the exported diagnostics is the single most useful thing to attach.

If your trouble is with the headless daemon on a streaming box rather than the desktop app, its diagnostics live in the CLI, not this page. Start with:
qbzd status # names the failing subsystem (auth, audio, playback, Connect, network)Full daemon troubleshooting — silent output, the box vanishing from the Qobuz app (linger), DAC not detected, identity collisions after a settings import — is on the Headless Daemon manual and the worked Build a Streaming Box guide.
If your issue isn't covered here:
- Check the GitHub Issues for existing reports
- Open a new issue with:
- QBZ version (Settings > About)
- Linux distribution and version
- Audio backend and device
- Steps to reproduce the issue
- The uploaded log URL or exported diagnostics (Settings > Developer)
Getting Started
Audio
Appearance
My QBZ
Features
Help