Language: Deutsch · English
Run the Nuclos Launcher on Linux as an AppImage – incl. libfuse2 and optional desktop integration.
HOW-TO USER UPDATED: JUL 2026 APPLIES TO NUCLOS 4.2026.X
On this page
Current Linux distributions need libfuse2 to load AppImages:
sudo apt-get install libfuse2 zlib1g-dev
With execute permission the launcher starts directly:
chmod +x Nuclos_Launcher_*.AppImage
For seamless integration (start menu, auto-updates) we recommend AppImageLauncher:
bash -c 'set -e; A=$(dpkg --print-architecture); case "$A" in amd64|arm64) F="appimagelauncher_2.2.0_${A}-bionic.deb";; *) echo "Not supported architecture: $A" >&2; exit 1;; esac; U="https://launchpad.net/appimagelauncher/2.x/v2.2.0/+download/$F"; wget -qO "/tmp/$F" "$U"; sudo apt-get install "/tmp/$F"; rm "/tmp/$F"'