Hey @Lauri_Lehto,
Although it seems to be basic - here’s a step-by-step guide to installing Volumio on your Raspberry Pi 3B+:
1. Download Volumio
- Download the latest Volumio OS for Raspberry Pi from:
https://volumio.com/en/get-started/
2. Extract the Image
- The downloaded file is a ZIP archive. You need to extract it before flashing.
- Windows: Right-click → Extract All
- Mac: Double-click to unzip
- Linux: Run in terminal:
unzip volumio-*.zip
- This will extract a .img file.
3. Flash the Image
You must flash the .img
file (not the .zip
). Use one of these methods:
Option 1: Raspberry Pi Imager (Recommended)
- Open Raspberry Pi Imager (Download Here).
- Click “Choose OS” → Scroll down and select “Use Custom”.
- Select the downloaded .img file.
- Click “Choose Storage” and select your SD card.
- Click “Write” (Do not make customizations. Customizations will break VolumioOS).
Option 2: Balena Etcher
- Download and install Balena Etcher (Download Here).
- Open Balena Etcher.
- Click “Flash from file” and select the .img file.
- Select your SD card.
- Click “Flash” and wait for the process to complete.
Option 3: Using dd
on Linux/macOS
- Find the SD card device:
(Look for something likelsblk
/dev/sdX
or/dev/mmcblkX
). - Flash the image using
dd
(Replace/dev/sdX
with the correct SD card path):sudo dd if=volumio-*.img of=/dev/sdX bs=4M status=progress
- Sync and eject:
sync
4. Insert the SD Card and Boot
- Do not format the SD card after flashing!
- Insert the SD card into your Raspberry Pi 3B+ and power it on.
- Wait for Volumio to boot (green LED should blink).
Kind Regards,