ZINE #1 · SPRING 2026 · NOT FOR RESALE

Private
Archive

a small service for bytes that should be readable only by you


so anyway here’s the deal:

— pg. 1 —

why we made this

most “encrypted” backup services know your name email card number IP address device fingerprint — basically everything except the contents of your files. and even those they sometimes still see, because the encryption is added on top of a credentialled session that already identifies you.

that’s not what we wanted to build. so we built a different thing.

private archive is a backup service that does not know who its customers are. you generate a certificate on your machine. you encrypt your files with restic. you send the ciphertext through tor. you pay in monero. that’s the whole product.

— pg. 2 —

the threat model

^^ those last two are features. a service that can recover your data is a service whose breach can recover it for someone else.

— pg. 3 —

how the bytes travel

        you                                   us
   .--------.       tor (3 hops)        .------------.
   | restic | =========== ⤳ =========== |  scrambled |
   |  encr  |                            |    noise   |
   '--------'                            '------------'
       ^                                       |
       |--------- you can pull bytes back any time ↩ ---------|
  

↑ restic encrypts the bits before they leave your laptop. we get scrambled noise. where we put the noise is, frankly, none of your business — and we couldn’t unscramble it for ourselves either way.

— pg. 4 —

how to actually use it

  1. download the client — binaries listed on pg. 5.
  2. run it. privatearchive init generates a certificate. keep it safe (and backed up — in a different place).
  3. fund. privatearchive pay prints a monero subaddress. send some XMR. pay-as-you-go — top up, burn down, no subscription, no monthly anything.
  4. back up. privatearchive backup ~/Documents. you can put this in cron.
  5. forget. seriously, that’s the goal.

if any of that is unclear we have probably failed at our job. write us through the gitea issue tracker.

— pg. 5 —

grab the binaries

all builds reproducible from source. don’t trust us. compile.


Every channel below installs the same reproducible, signed binaries. Verify direct downloads against SHA256SUMS; the apt, dnf and pacman repositories are GPG repo-signed with fingerprint 4792 23EA 8405 287A 11FB B12E 02A7 7A1E EDD0 F111.

Any platform — one line

curl -fsSL https://privatearchive.xyz/install.sh | bash

Or download a tarball for macOS, Linux, Windows, FreeBSD or OpenBSD (amd64 + arm64) — and the source — from the latest release.

Debian / Ubuntu — apt

curl -fsSL https://privatearchive.xyz/apt/release-key.asc | sudo gpg --dearmor -o /usr/share/keyrings/privatearchive.gpg
echo "deb [signed-by=/usr/share/keyrings/privatearchive.gpg] https://privatearchive.xyz/apt stable main" | sudo tee /etc/apt/sources.list.d/privatearchive.list
sudo apt update && sudo apt install privatebackup

Fedora / RHEL — dnf

sudo curl -fsSL https://privatearchive.xyz/dnf/privatearchive.repo -o /etc/yum.repos.d/privatearchive.repo
sudo dnf install privatebackup

Arch — pacman

curl -fsSL https://privatearchive.xyz/pacman/release-key.asc | sudo pacman-key --add -
sudo pacman-key --lsign-key 479223EA8405287A11FBB12E02A77A1EEDD0F111
printf '\n[privatearchive]\nServer = https://privatearchive.xyz/pacman\n' | sudo tee -a /etc/pacman.conf
sudo pacman -Sy privatebackup

macOS — Homebrew

brew install https://privatearchive.xyz/brew/privatebackup.rb

Windows — Scoop

scoop install https://privatearchive.xyz/scoop/privatebackup.json