Heyla! I did the steps for installing Passbolt on KDE Neon, based on the Ubuntu 24.04 instructions, but get the message KDE neon 6.3 is not supported. KDE Neon is based on Ubuntu 24.04, so I was kind of expecting this would work, and I am almost sure it should work.
You’ll see on line 52 of the script passbolt-repo-setup.ce.sh that it checks for a supported distro.
It does that by checking the existance of /etc/debian_version and then sourcing the /etc/os-release(line 19) and/or checking for a Redhat-derived OS by the existance of the commands yum/dnf/zypperas PACKAGE_MANAGER.
That’s why you’re seeing the compliance check fail as the “KDE neon 6.3” is the result of line 124: grep -E "^ID=" /etc/os-release | awk -F= '{print $2}'
function is_supported_distro() {
local DISTROS=(
"debian11"
"debian12"
"raspbian"
...etc...
Error message:
compliance_check () {
local NOT_SUPPORTED_DISTRO="Unfortunately, ${PRETTY_NAME:-This Linux distribution} is not supported :-("
if ! is_supported_distro; then
_error_exit "${NOT_SUPPORTED_DISTRO}"
fi
You have a few options. Some of them depend on how comfortable you are editing the install script and how confident you are of troubleshooting any packaging dependency issues.
If it’s not a production server and you want to have a go then happy to try and help.