Claude Desktop 1.1062.0 (patch release 2)
This release provides Claude Desktop version 1.1062.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.1062.0-2_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.1062.0-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.1062.0-2.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.1062.0-2.aarch64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
# x86_64
chmod +x Claude_Desktop-1.1062.0-x86_64.AppImage
./Claude_Desktop-1.1062.0-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.1062.0-aarch64.AppImage
./Claude_Desktop-1.1062.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 | 9b12c2dea8ee762b2bd10e69f0dcb342749271cfc7c5164ea13e44eac4da8120
|
| AppImage (x86_64) | e0f537d054d90aeec0d11063f69f78c8ca1e954ec5442fdd80eb01383c34e162
|
| AppImage (aarch64) | 888eaadaf3f066be0b7f176c5d47881270edbc6591e37aab6f90b8b7b6e72c0d
|
| Debian (amd64) | 357fee90cbfcfc91379fdbf11a15896ae189c540413f1b5f753bef2d2435d00b
|
| Debian (arm64) | 86e7ae62897c79786a7d84fd7b623cc2fecf4a11f2679858ad57aca61638e4a3
|
| RPM (x86_64) | 7e0118b4ab2692c1b5108f37285b7be4b50c1fbdc2edd510395a5ddd1b3e2950
|
| RPM (aarch64) | ae433d947a163b476d85b47290b4bbd841130130f093ce6b8926e73ac3935044
|
Changes since last release
Fixed
- fix_computer_use_linux.py sub-patch 14a: "Separate filesystems" system prompt paragraph replaced with "Same filesystem" on Linux — the CLI and desktop share the same machine, there is no sandbox
- fix_computer_use_linux.py sub-patch 14b: macOS app names "Maps, Notes, Finder, Photos, System Settings" replaced with distro-generic terms "the file manager, image viewer, terminal emulator, system settings" (works across Arch, Ubuntu, Fedora, NixOS)
- fix_computer_use_linux.py sub-patch 14c: File manager name "Finder" → "Files" on Linux in host filesystem guidance
Root cause
The CU system prompt builder only distinguished Windows vs non-Windows, giving Linux sessions macOS-specific text ("Separate filesystems", "Finder", sandbox references). The model used these cues plus visual similarity to misidentify Linux desktops as macOS. The .host-home path examples (/Users/alice/...) were already skipped on Linux due to hostLoopMode=true.