Error with qDslrDashboard V3.6.4 for Raspberry Pi 4
Re: Error with qDslrDashboard V3.6.4 for Raspberry Pi 4
I have the same problem but i'm using a raspberry pi 3, but that ins't problem. How do you know what is the problem???...
-
- Posts: 5
- Joined: 29 May 2025, 07:55
Re: Error with qDslrDashboard V3.6.4 for Raspberry Pi 4
Hello everyone,
I’ve made several attempts to get qDslrDashboard_V3.6.4_RPI4_Buster running on the Pi 4B and Zero2W — now I’ve succeeded and created a script along the way.
I use a Canon EOS 500D and an 80D, and with both cameras the dashboard works on both the Pi 4B and the Pi Zero 2W.
For this, I used the 32-bit Bullseye image which is currently available in the Raspberry Pi Imager. Alternatively, you can download the image here (in case it is no longer available by the time you read this):
https://downloads.raspberrypi.com/raspi ... 025-05-07/
-> 2025-05-06-raspios-bullseye-armhf-full.img.xz
This image can then be flashed using the Raspberry Pi Imager (or any other tool) by going to Operating System (OS) → Use custom.
1) After flashing the image, insert the SD card into the Pi and wait until the OS has booted.
2) Copy the file install.sh to the Pi via USB stick — preferably into the home directory.
3) Make the script executable: either via terminal chmod 777 install.sh or via right-click → Properties → Permissions → Change Content: Anyone & Execute: Anyone.
4) Start the installation: either in the terminal with ./install.sh or by double-clicking the file and selecting “Execute in Terminal”.
5) All required libraries and qDslrDashboard will be installed. A desktop shortcut for launching the application will be created.
FROM THIS POINT ON, QDSLRDASHBOARD SHOULD BE INSTALLED AND WORKING
Additional parameters can be provided to the script via terminal, which is useful if you intend to use the Pi exclusively with your camera.
The options can be enabled as follows: ./install.sh -AP -VNC -QTM -offline
-AP: Creates a WiFi access point on the Pi. The IP address will be 192.168.5.1. Other devices can connect to this WiFi to control the Pi (e.g. via SSH, X11, VNC...).
-> SSID (network name) and password are variables in the script and can be changed directly in it.
-> SSID="MyWIFI" # Enter your desired SSID
-> PASSWORD="passwort" # Enter your desired password
-VNC: Enables the already installed VNC server. You can then connect to the Pi remotely via a VNC client (e.g. RealVNC).
-QTM: Installs libQt5QmlModels if it is available in the same directory as qmlmodelslib.tar.gz.
-> Some users in the forums mentioned that this library is required. I didn’t need it personally.
-offline: Installs the required libraries from the local offline_packages directory if it is available (see below).
I’ve made several attempts to get qDslrDashboard_V3.6.4_RPI4_Buster running on the Pi 4B and Zero2W — now I’ve succeeded and created a script along the way.
I use a Canon EOS 500D and an 80D, and with both cameras the dashboard works on both the Pi 4B and the Pi Zero 2W.
For this, I used the 32-bit Bullseye image which is currently available in the Raspberry Pi Imager. Alternatively, you can download the image here (in case it is no longer available by the time you read this):
https://downloads.raspberrypi.com/raspi ... 025-05-07/
-> 2025-05-06-raspios-bullseye-armhf-full.img.xz
This image can then be flashed using the Raspberry Pi Imager (or any other tool) by going to Operating System (OS) → Use custom.
1) After flashing the image, insert the SD card into the Pi and wait until the OS has booted.
2) Copy the file install.sh to the Pi via USB stick — preferably into the home directory.
3) Make the script executable: either via terminal chmod 777 install.sh or via right-click → Properties → Permissions → Change Content: Anyone & Execute: Anyone.
4) Start the installation: either in the terminal with ./install.sh or by double-clicking the file and selecting “Execute in Terminal”.
5) All required libraries and qDslrDashboard will be installed. A desktop shortcut for launching the application will be created.
FROM THIS POINT ON, QDSLRDASHBOARD SHOULD BE INSTALLED AND WORKING
Additional parameters can be provided to the script via terminal, which is useful if you intend to use the Pi exclusively with your camera.
The options can be enabled as follows: ./install.sh -AP -VNC -QTM -offline
-AP: Creates a WiFi access point on the Pi. The IP address will be 192.168.5.1. Other devices can connect to this WiFi to control the Pi (e.g. via SSH, X11, VNC...).
-> SSID (network name) and password are variables in the script and can be changed directly in it.
-> SSID="MyWIFI" # Enter your desired SSID
-> PASSWORD="passwort" # Enter your desired password
-VNC: Enables the already installed VNC server. You can then connect to the Pi remotely via a VNC client (e.g. RealVNC).
-QTM: Installs libQt5QmlModels if it is available in the same directory as qmlmodelslib.tar.gz.
-> Some users in the forums mentioned that this library is required. I didn’t need it personally.
-offline: Installs the required libraries from the local offline_packages directory if it is available (see below).
- Attachments
-
- installScript.zip
- (5 KiB) Downloaded 9 times
-
- Posts: 5
- Joined: 29 May 2025, 07:55
Re: Error with qDslrDashboard V3.6.4 for Raspberry Pi 4
Because I like to be able to reproduce things later, I also wrote a second script that downloads all necessary libraries in the correct version and saves them locally.
With this, you can create a full offline installer and install qDslrDashboard without needing an internet connection.
In install.sh, you must add the -offline parameter. The installation will then work even if the OS is no longer officially supported.
1) Copy the file getOfflinePakage.sh to the Pi via USB stick — again, ideally to the home directory.
2) Make it executable: via terminal chmod 777 getOfflinePakage.sh or right-click → Properties → Permissions → Change Content: Anyone & Execute: Anyone
3) Start the package download: either in the terminal with ./getOfflinePakage.sh or double-click the file and choose “Execute in Terminal”.
4) The required libraries will be downloaded to the directory offline_packages.
5) The qDsalrDashboard is downloaded automatically
6) if install.sh, readme.sh and qmlmodelslib.tar.gz are in the same directory as getOfflinePakage.sh. They will also be added to the offline installer
7) everything will be packed to a tar.gz file with the following structure:
offline_installer/
├── install.sh (OPTIONAL)
├── Readme.txt (OPTIONAL)
├── qDslrDashboard_V3.6.4_RPI4_Buster.tar.gz
├── offline_packages/
│ └── *.deb
└── qmlmodelslib.tar.gz (OPTIONAL)
8) Save offline_installer.tar.gz to your USB stick.
If your SD card ever becomes corrupted, you can copy this offline_installer archive to your Pi after re-imaging, extract it, and install everything — including libraries — without needing an internet connection.
To extract it via terminal: tar -xzf offline_installer.tar.gz or via file explorer: right-click -> Extract Here.
Now you can use the install.sh script with the option -offline
With this, you can create a full offline installer and install qDslrDashboard without needing an internet connection.
In install.sh, you must add the -offline parameter. The installation will then work even if the OS is no longer officially supported.
1) Copy the file getOfflinePakage.sh to the Pi via USB stick — again, ideally to the home directory.
2) Make it executable: via terminal chmod 777 getOfflinePakage.sh or right-click → Properties → Permissions → Change Content: Anyone & Execute: Anyone
3) Start the package download: either in the terminal with ./getOfflinePakage.sh or double-click the file and choose “Execute in Terminal”.
4) The required libraries will be downloaded to the directory offline_packages.
5) The qDsalrDashboard is downloaded automatically
6) if install.sh, readme.sh and qmlmodelslib.tar.gz are in the same directory as getOfflinePakage.sh. They will also be added to the offline installer
7) everything will be packed to a tar.gz file with the following structure:
offline_installer/
├── install.sh (OPTIONAL)
├── Readme.txt (OPTIONAL)
├── qDslrDashboard_V3.6.4_RPI4_Buster.tar.gz
├── offline_packages/
│ └── *.deb
└── qmlmodelslib.tar.gz (OPTIONAL)
8) Save offline_installer.tar.gz to your USB stick.
If your SD card ever becomes corrupted, you can copy this offline_installer archive to your Pi after re-imaging, extract it, and install everything — including libraries — without needing an internet connection.
To extract it via terminal: tar -xzf offline_installer.tar.gz or via file explorer: right-click -> Extract Here.
Now you can use the install.sh script with the option -offline
- Attachments
-
- getOfflinePackage.zip
- (914 Bytes) Downloaded 8 times
-
- Posts: 5
- Joined: 29 May 2025, 07:55
Re: Error with qDslrDashboard V3.6.4 for Raspberry Pi 4
One last thing if anybody is using VNC. If you running the Pi in Headless mode, the VNC server seems to have some problems with displaying the screen in headless mode. On pi4 it lacked a lot and for Pi zero2w qDslrDashboard was not working at all. With a display everything is working fine.
To fix this problem I bought myself an hdmi display dummy for about 5€. Now the VNC is working smooth.
https://www.google.com/search?q=hdmi+display+dummy
To fix this problem I bought myself an hdmi display dummy for about 5€. Now the VNC is working smooth.
https://www.google.com/search?q=hdmi+display+dummy