Claude Desktop 1.1.9310 (patch release 3)
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-3_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.1.9310-3_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-3.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.1.9310-3.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 | 61714d7907b4f77c6c51ffeae0b9b6843121efa7855839fb3778f53b3c5b719c
|
| AppImage (x86_64) | 15b47bf18637c5c654dde4c38b4b6f8907547ebb07f2314065a074f06c6bc0aa
|
| AppImage (aarch64) | 3c3150153e0e8ca9a4b3d485322e3add29ef7f0379f3d110ea6398858c5959ae
|
| Debian (amd64) | c1835175c8c52decf7747d24ad508dd1575137eceed987137fb8ce717361335d
|
| Debian (arm64) | f94153e402214a2a4e79675286e4bb36ba2ee324fe90c26c9f9aa36adbe0a013
|
| RPM (x86_64) | cc5912b5b5d30a337bb02ac5e60aefb51e56f6ba7d4d336aec231978975c0fd0
|
| RPM (aarch64) | 9b73a0acca5f75a7a05206a921ab30f87341c37e35ec443a91ff19f17eac81f2
|
Changes since last release
Fixed
- Launcher shebang: Removed two leading spaces before
#!/usr/bin/env bashthat causedExec format errorwhen launched from desktop entries or protocol handlers (kernel requires#!at byte 0). Terminal launches were unaffected. (#17)
Changed
- Build: shebang validation:
build-patched-tarball.shnow validates that the launcher script has#!at byte 0 before creating the tarball, preventing this class of bug from reaching users