Claude Desktop 1.2581.0 (patch release 3)
This release provides Claude Desktop version 1.2581.0 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.2581.0-3_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.2581.0-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.2581.0-3.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.2581.0-3.aarch64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
# x86_64
chmod +x Claude_Desktop-1.2581.0-x86_64.AppImage
./Claude_Desktop-1.2581.0-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.2581.0-aarch64.AppImage
./Claude_Desktop-1.2581.0-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 | 47008f6f96c29f4d957527d36aa2fe8330a6a7df20b19322309f8b1b2e6b3406
|
| AppImage (x86_64) | 2436d3deebdc354eeb44124b8709691af41732e7cfdd0e0dbbfb6efbd04886fe
|
| AppImage (aarch64) | f34512044daa27bdf3277d44d20796861b64628264f80f91e3fdc73828f43ad1
|
| Debian (amd64) | 99adcc6bfbebea8d8a9b59cdb47ee9fb0ef018306f5fde5f4330e7d7e8318583
|
| Debian (arm64) | f0c772725e843249e13e3d4c38187302198bdbbfae4ec4f8c860a576c4199609
|
| RPM (x86_64) | edc8ce36719f1b8d10bd3ed3ef838594f01e3830357d64db9016e7a5e5deae5d
|
| RPM (aarch64) | c1c597b5a763db946635d92654c1d90becb3da2950cdbf7a469f92b08e10a105
|
Changes since last release
Bug Fix
- Integrated terminal broken —
node-pty's nativepty.nodewas packed insideapp.asarwhere Electron can'tdlopen()native modules. Fixedbuild-patched-tarball.shto useasar pack --unpack "{**/*.node,**/spawn-helper}"so Electron's loader redirectsrequire()toapp.asar.unpacked/. - Missing
spawn-helper—@electron/rebuildonly builds.nodemodules, not executables. Addedgccbuild ofspawn-helperfrom node-pty source (pure C, no Node deps). Required bypty.fork()to spawn PTY shell processes. - All distros covered — the tarball produced by
build-patched-tarball.shis consumed by all packaging scripts (Arch PKGBUILD, Debian, RPM, AppImage, Nix) viacp -r app/*, so the fix propagates automatically. - ARM64 + glibc-compat — updated
scripts/rebuild-pty-for-arch.shand the CI inline glibc-compat Docker rebuild step to also build and installspawn-helperalongsidepty.node.