Fix client install: correct lair-cafe repo id and real GPG key URL (8b2023ce.gpg)
All checks were successful
poll-upstream / check (push) Successful in 2s

This commit is contained in:
2026-07-02 07:02:01 +00:00
parent 707398a337
commit 1a0526ae6f

View File

@@ -20,17 +20,26 @@ No app source lives here — only packaging. See `CLAUDE.md` for details.
## Install (Fedora) ## Install (Fedora)
Uses the shared `lair-cafe` dnf repo (same repo/GPG key as the other `lair`
packages). If you've already configured `lair-cafe.repo` on a host, just
`sudo dnf install claude-desktop`. Otherwise:
```bash ```bash
sudo tee /etc/yum.repos.d/lair.repo <<'EOF' sudo rpm --import https://rpm.lair.cafe/8b2023ce.gpg
[lair] sudo tee /etc/yum.repos.d/lair-cafe.repo > /dev/null <<'EOF'
name=lair [lair-cafe]
baseurl=https://rpm.lair.cafe/fedora/$releasever/x86_64/ name=lair.cafe RPM Repository
baseurl=https://rpm.lair.cafe/fedora/$releasever/$basearch/
enabled=1 enabled=1
gpgcheck=1 gpgcheck=1
gpgkey=https://rpm.lair.cafe/RPM-GPG-KEY-lair gpgkey=https://rpm.lair.cafe/8b2023ce.gpg
EOF EOF
sudo dnf install claude-desktop sudo dnf install claude-desktop
``` ```
(Use the same `.repo`/GPG-key convention as the other `lair` packages if one Subsequent `dnf upgrade` picks up new Claude Desktop versions automatically.
already exists on your hosts.)
## Runtime notes
If Chromium's sandbox misbehaves on a host with restricted user namespaces:
`claude-desktop --no-sandbox`, or `sudo sysctl kernel.unprivileged_userns_clone=1`.