Claude Desktop 1.1.9310 (patch release 4)
This release provides Claude Desktop version 1.1.9310 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.1.9310-4_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.1.9310-4_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.1.9310-4.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.1.9310-4.aarch64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
# x86_64
chmod +x Claude_Desktop-1.1.9310-x86_64.AppImage
./Claude_Desktop-1.1.9310-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.1.9310-aarch64.AppImage
./Claude_Desktop-1.1.9310-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 | 395e64bb20d8c24546968e514f3f1e40a132229ba2dc928f83f822cf433a37fe
|
| AppImage (x86_64) | f9130b6961aabcba6312efdc03f4ae7600c1f078986555e3c15951f677dbf328
|
| AppImage (aarch64) | 508d9bd95ad0a417549873b3fb152e3aec21341f15d4703f44cceeaa6de28aeb
|
| Debian (amd64) | 4a98ae71b8e42faaf4f24f273bb9b562f22e83ec0a2015b8911245e87a2467ae
|
| Debian (arm64) | cf10a93244df8477fc9ee2ccaf863eb9768fbb9e430e79d934993a89845e7ae0
|
| RPM (x86_64) | d05df14194af8b33d53a17b31bc772298969bdfb9dfe93e41fdcf4590b320cf3
|
| RPM (aarch64) | bba9390a161153fa77de0e37851400c11899a5f46dc0d1e45b2d8907236e9a9d
|
Changes since last release
Fixed
- Nix hash mismatch (#19) — CI computed the Nix SRI hash from the locally-built tarball artifact, but users download from GitHub Releases. Non-deterministic tar builds across CI re-runs caused the hash to drift from the actual release asset. Fixed by computing the hash from the downloaded release tarball instead of the build artifact. Reverted
package.nixhash to match the actual released tarball.