Claude Desktop 1.14271.0 (patch release 4)
This release provides Claude Desktop version 1.14271.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.14271.0-4_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.14271.0-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.14271.0-4.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.14271.0-4.aarch64.rpmNixOS / Nix
nix run github:patrickjaja/claude-desktop-binAppImage (Any Distro)
# x86_64
chmod +x Claude_Desktop-1.14271.0-x86_64.AppImage
./Claude_Desktop-1.14271.0-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.14271.0-aarch64.AppImage
./Claude_Desktop-1.14271.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 (x86_64) | 8996b3cd1d1f12ac118cf668b9f005396c0d2631fc35d75b81f592f2095410d4
|
| Tarball (aarch64) | 19d9487f0b84f42fd2dbb7692a33ad5001509b5ab722176290cd21d2be59fe1b
|
| AppImage (x86_64) | 419d23041e395a5d5d3ec740dae95dc89ec6e4fbaabf4fe06598ea49a5c06d90
|
| AppImage (aarch64) | c247bd67d867bd1792f58a5bb03be904bc8c3b293ea6d62334b2b8c91acd5342
|
| Debian (amd64) | 8ca81e3c28c31b85fd1718cfbd08e8a55db3ebb9f35e07335064cac3d40aa3c2
|
| Debian (arm64) | d0c3851e4b2ce01c5466ae8b062cd8a4a757f7bc3e23b96752cde7d0f0541efe
|
| RPM (x86_64) | b10a16c70070e8dddb5cb715680893cb25b4f70a1f8e0f4575ac722e01bc0e22
|
| RPM (aarch64) | aaf5e9bb096ef1c36a84c7cdb79a1818671d5f32d0e89708ac7054b41afc0f1d
|
Changes since last release
Fix: no window opens on Wayland (Vulkan incompatible with --ozone-platform=wayland)
- The launcher now passes
--disable-features=Vulkanon native Wayland sessions. On GPUs where Chromium (Electron 42) brings up Vulkan - real Intel/AMD/NVIDIA with a recent Mesa driver - it refuses to pair Vulkan with--ozone-platform=wayland, so the Wayland surface factory fails (wayland_surface_factory.cc: '--ozone-platform=wayland' is not compatible with Vulkan) and no window is ever created: a silent no-UI startup (the main process logs its[claude-cu] diagnostics:lines and stays alive, but nothing renders). Machines where Chromium never selects Vulkan (VMs, software GL) are unaffected and never hit this. Disabling the Vulkan feature is therefore a no-op on the unaffected machines and the fix on the affected ones - Chromium refuses Vulkan+Wayland outright, so no working render path is removed. Only thewaylandarm is touched; X11 and XWayland (CLAUDE_USE_XWAYLAND=1) use--ozone-platform=x11and keep Vulkan. Opt back in withCLAUDE_ENABLE_VULKAN=1. claude-desktop --diagnosenow prints the assembledelectron_argsso future no-window reports show the active flags.- README gained a "No window opens on Wayland" troubleshooting section and a
CLAUDE_ENABLE_VULKANenv-var row. Launcher-only change; no patch or upstream-version bump.