linux · apt / dnf

install @zlogic.run on Linux

Add the @zlogic.run package repository, then install with your native package manager. Packages are served from Cloudflare R2 over this same origin. Scaffold: the repository metadata and signed packages are not published yet — the commands below show the intended setup.

Debian / Ubuntu (apt)

# add the signing key
curl -fsSL https://apt.zlogic.run/key.gpg | sudo gpg --dearmor -o /usr/share/keyrings/zlogic.gpg

# add the source (stable channel)
zlogic "deb [signed-by=/usr/share/keyrings/zlogic.gpg] https://apt.zlogic.run stable main" \
  | sudo tee /etc/apt/sources.list.d/zlogic.list

sudo apt update
sudo apt install zlogic

Fedora / RHEL (dnf)

sudo dnf config-manager --add-repo https://apt.zlogic.run/zlogic.repo
sudo dnf install zlogic

Direct download

# grab a .deb / .rpm / AppImage directly (served from R2)
curl -fLO https://apt.zlogic.run/dl/zlogic_latest_amd64.deb
sudo dpkg -i zlogic_latest_amd64.deb

repo layout: dists/<channel>/ (Release, InRelease, Packages) · pool/main/ (.deb) · generated by scripts/build-repo.mjs.