Installation
Prerequisites
Section titled “Prerequisites”- 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.
Installation
Section titled “Installation”-
Start by adding the GPG key for the repository:
Terminal window sudo apt-get updatesudo apt-get install ca-certificates curlsudo install -m 0755 -d /etc/apt/keyringssudo curl -fsSL https://apt-swarm.ktrain5369.dev/repo/apt-swarm-public-key.asc \-o /etc/apt/keyrings/apt-swarm.ascsudo chmod a+r /etc/apt/keyrings/apt-swarm.asc -
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.listTerminal window echo "deb [signed-by=/etc/apt/keyrings/apt-swarm.asc] \https://apt-swarm.ktrain5369.dev/repo noble main" \| sudo tee /etc/apt/sources.list.d/apt-swarm.list -
Update your APT, and install a package!
Terminal window sudo apt updatesudo apt install <package>If you would like to verify the package, you can inspect any package with one command!
Terminal window apt policy <package>