Claude Desktop 1.24012.9 (patch release 5)
This release provides Claude Desktop version 1.24012.9 pre-patched for Linux.
Installation Options
Arch Linux (pacman Repository - recommended)
curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install-pacman.sh | sudo bash
sudo pacman -Syu claude-desktop-binArch Linux (manual package)
# x86_64
sudo pacman -U https://github.com/patrickjaja/claude-desktop-bin/releases/download/v1.24012.9-5/claude-desktop-bin-1.24012.9-5-x86_64.pkg.tar.zst
# ARM64
sudo pacman -U https://github.com/patrickjaja/claude-desktop-bin/releases/download/v1.24012.9-5/claude-desktop-bin-1.24012.9-5-aarch64.pkg.tar.zstDebian/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-5_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.24012.9-5_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-5.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.24012.9-5.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 |
|---|---|
| Arch pacman (x86_64) | 6df576dd9bfc56ac6483571fba73258696ad20664cf048da630d7b71ee15197c
|
| Arch pacman (aarch64) | 7579b09703d61d4b30073fc9d1b4033239e7b10fda9fb2414ef9113e2ecf79f9
|
| Tarball (x86_64) | ea147736bcba570d6088e04561f3cc02043ec59c2c9f5784cc2330a0f47fcf17
|
| Tarball (aarch64) | eea28000d7e00873ccc13e30fc45aebc4deff5d94e4f03b2522bb8437d96efc5
|
| AppImage (x86_64) | 33d716e2623af904282c0280f8321f3b722bf3a67acbbdd02a65ddec2cc17d50
|
| AppImage (aarch64) | 6196d50967702a84dd9704b977bc4b13f556daa2d496b983aabbac9151b41591
|
| Debian (amd64) | 62d2015e7c684d227b0764b4ef6f45c847ae9503ff29bb50ac3edadf87eac8bf
|
| Debian (arm64) | c42408ca7eb289806e775b02bdddccc2f752e5c4f761ee737ff201bc8e23c064
|
| RPM (x86_64) | 649d3e350cd8ef6664be28f501bfc3b7134a81a381c50c197513fe127011195d
|
| RPM (aarch64) | 68b8e353a66bf445bf57ad200629265c738048827fd1ea0528af809665ea2c45
|
Changes since last release
From CHANGELOG.md, 2026-07-28:
Arch / Manjaro: install from our own signed pacman repository
The claude-desktop-bin AUR package was deleted by the AUR maintainers after a third party filed a duplicate-package request against it. Rather than return to the AUR, Arch and Manjaro users are now served by our own pacman repository, matching how we already ship to Debian/Ubuntu and Fedora/RHEL:
curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install-pacman.sh | sudo bash
sudo pacman -Syu claude-desktop-binPackages and the repository database are GPG-signed with the same key as the APT and RPM repos (SigLevel = Required DatabaseRequired) and hosted as GitHub release assets. Updates arrive with sudo pacman -Syu; AUR helpers wrap pacman, so yay -Syu keeps working. Because flat release assets cannot express per-arch directories, the repo section is [claude-desktop-bin] on x86_64 and [claude-desktop-bin-aarch64] on aarch64 - the package name is claude-desktop-bin on both. The README documents the manual pacman.conf stanza for anyone who prefers not to pipe a script into sudo bash.
Building from source stays supported for users who avoid third-party repositories: the PKGBUILD is still generated and CI-tested on every release, and it is now published as a release asset along with .SRCINFO and claude-desktop-bin.install, so makepkg -si works without an AUR clone.
The AUR push step has been removed from the release workflow.
install-pacman.sh runs pacman-key --init before importing the key. A normal Arch install already has the keyring's local signing key, but containers, chroots and wiped keyrings do not, and without it --lsign-key fails with a cryptic "There is no secret key available to sign with".