https://bugs.kde.org/show_bug.cgi?id=447150
--- Comment #13 from Nicofo <nic...@tuxfamily.org> --- Thanks. Yes, I see your last commits in that AppImage. It is still not working, unless like in comment #7 I give priority to system libraries. Here is the result with your last bundle (not changed): $ ./digiKam-7.5.0-20211227T120913-x86-64.appimage -- digiKam Linux AppImage Bundle -- Use 'help' as CLI argument to know all available options for digiKam application. -- Notes: to integrate this bundle to your desktop, use AppImageLauncher. -- to enable all debug messages on the console, use 'export QT_LOGGING_RULES="digikam*=true"'. Check library libudev.so.0 Check library libxcb-dri3.so.0 Check library libcrypto.so.1.1 Check library libssl.so.1.1 -- Preloading shared libs: :/usr/lib64/libxcb-dri3.so.0:/tmp/.mount_digiKaBl0myc/usr/lib64/libcrypto.so.1.1:/tmp/.mount_digiKaBl0myc/usr/lib64/libssl.so.1.1 digikam: /tmp/.mount_digiKaBl0myc/usr/lib64/libcrypto.so.1.1: version `OPENSSL_1_1_1b' not found (required by /lib64/libk5crypto.so.3) To summarize, to get it work I need to: 1) prioritize system libraries (in preload_shared_library function). I do that for the test, but I understand that it should not be changed 2) OR it works also with the following command: $ LD_PRELOAD=/usr/lib64/libssl.so.1.1:/usr/lib64/libcrypto.so.1.1 ./digiKam-7.5.0-20211227T120913-x86-64.appimage or simply: $ LD_PRELOAD=/usr/lib64/libcrypto.so.1.1 ./digiKam-7.5.0-20211227T120913-x86-64.appimage -- You are receiving this mail because: You are watching all bug changes.