Updated instructions for installing my Debian package repositories
I use these repos to distribute my own programs (the OSS
repo) or Debian packages for third-party software (the 3p
repo). The instructions in various project README
s use old-style .list
files; these updated instructions will install new-style .sources
files.
Prerequisite: Keyring
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://dist.cdzombak.net/keys/dist-cdzombak-net.gpg -o /etc/apt/keyrings/dist-cdzombak-net.gpg
sudo chmod 644 /etc/apt/keyrings/dist-cdzombak-net.gpg
OSS Repo
sudo mkdir -p /etc/apt/sources.list.d
sudo curl -fsSL https://dist.cdzombak.net/cdzombak-oss.sources -o /etc/apt/sources.list.d/cdzombak-oss.sources
sudo chmod 644 /etc/apt/sources.list.d/cdzombak-oss.sources
sudo apt update
Third-party Repo
sudo mkdir -p /etc/apt/sources.list.d
sudo curl -fsSL https://dist.cdzombak.net/cdzombak-3p.sources -o /etc/apt/sources.list.d/cdzombak-3p.sources
sudo chmod 644 /etc/apt/sources.list.d/cdzombak-3p.sources
sudo apt update