Skip to content

Installation

  • Make sure you’re running a recent Debian/Ubuntu release. While other Debian-based distros may work, they are not offically tested.
  • Have root access to the Linux system you are installing this on.
  1. Start by adding the GPG key for the repository:

    Terminal window
    sudo apt-get update
    sudo apt-get install ca-certificates curl
    sudo install -m 0755 -d /etc/apt/keyrings
    sudo curl -fsSL https://apt-swarm.ktrain5369.dev/repo/apt-swarm-public-key.asc \
    -o /etc/apt/keyrings/apt-swarm.asc
    sudo chmod a+r /etc/apt/keyrings/apt-swarm.asc
  2. Install the repository by adding it to your sources list:

    Terminal window
    echo "deb [signed-by=/etc/apt/keyrings/apt-swarm.asc] \
    https://apt-swarm.ktrain5369.dev/repo bookworm main" \
    | sudo tee /etc/apt/sources.list.d/apt-swarm.list
  3. Update your APT, and install a package!

    Terminal window
    sudo apt update
    sudo apt install <package>

    If you would like to verify the package, you can inspect any package with one command!

    Terminal window
    apt policy <package>