Claude Desktop 1.24012.9 (patch release 2)
This release provides Claude Desktop version 1.24012.9 pre-patched for Linux.
Installation Options
Arch Linux (AUR)
yay -S claude-desktop-binDebian/Ubuntu (APT Repository — recommended)
curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install.sh | sudo bash
sudo apt install claude-desktop-binDebian/Ubuntu (manual .deb)
# x86_64
sudo apt install ./claude-desktop-bin_1.24012.9-2_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.24012.9-2_arm64.debFedora/RHEL (RPM Repository — recommended)
curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install-rpm.sh | sudo bash
sudo dnf install claude-desktop-binFedora/RHEL (manual .rpm)
# x86_64
sudo dnf install ./claude-desktop-bin-1.24012.9-2.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.24012.9-2.aarch64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
# x86_64
chmod +x Claude_Desktop-1.24012.9-x86_64.AppImage
./Claude_Desktop-1.24012.9-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.24012.9-aarch64.AppImage
./Claude_Desktop-1.24012.9-aarch64.AppImageUpdate existing AppImage (delta download — only changed blocks):
appimageupdatetool Claude_Desktop-*-x86_64.AppImage # Or from within the AppImage: ./Claude_Desktop-*-x86_64.AppImage --appimage-update
Checksums
| File | SHA256 |
|---|---|
| Tarball (x86_64) | 68d48faf3208b3fedfbe50952d1878417fe28047f69bc499972f91fb72ea5c64
|
| Tarball (aarch64) | e9c9ccbdf029f8fbb004850796e98e7f2c16fb917797688d9df89350feb6fe11
|
| AppImage (x86_64) | 2cce6875ceaddb0f47acf7ec1fdd0f99d64eed04bdc93d5a15d3eeb673c2082f
|
| AppImage (aarch64) | 4d908bbb01c0a509e94530358ad95c143bccc9b24c6c3e0356eeab7f028dcdec
|
| Debian (amd64) | 04e8af802020c36d4339df3113880a3b2d85c1359cf19b4a63a919b35bc93b20
|
| Debian (arm64) | 59c42b1312ba1d29b1a39bfe3051f195a05f149463e582295e80f08f7c0f0191
|
| RPM (x86_64) | 17d76b9510d1a90460fac30a7832794cc8b674e00081a4730110a31d27d51ed1
|
| RPM (aarch64) | da1b38df4e951f9b60b30984e65ce8299ad352b56ccf7762c90c2c8e3dddd6c4
|
Changes since last release
From CHANGELOG.md, 2026-07-25:
Fix: KDE sessions without KWallet had to sign in again after every reboot
The launcher's Secret Service detection skipped KDE outright, assuming Chromium's KDE -> kwallet mapping always yields a working backend. It does not when KWallet is switched off (kwalletrc Enabled=false) or not installed: safeStorage.isEncryptionAvailable() returns false, the OAuth token never persists, and Plasma users who run gnome-keyring as their Secret Service were sent through the login flow on every boot. Checking the bus name is not sufficient either - org.kde.kwalletd6 stays D-Bus activatable in that state and activation simply fails.
KDE is now only treated as keyring-native when kwalletd answers a real org.kde.KWallet.wallets call (bounded by a 5s D-Bus timeout, so a pending wallet-creation wizard cannot stall startup); otherwise it falls through to the existing gnome-libsecret fallback from #191. Working KWallet setups, GNOME, and CLAUDE_PASSWORD_STORE=auto are unaffected.