Skip to content

Headless Raspberry Pi setup

Sofus edited this page Sep 19, 2025 · 3 revisions

Setup for auto start

Auto login

You need to set your raspberry pi to auto login using raspi-config

Edit .bashrc

Add the following line to your ~/.bashrc, to start qobuz-player on startup:

if [ -z "$SSH_TTY" ]; then
    qobuz-player --web --rfid --password PASSWORD --username me@test.com
fi

Edit flags to match your setup.

(Optional) GPIO

You can setup GPIO to power on and off your amplifier using a relay. See GPIO

Clone this wiki locally