Skip to content

Debian / Ubuntu

Install Trident on Debian, Ubuntu, and derivatives (Linux Mint, Pop!_OS, Kali, Raspberry Pi OS) using APT.

Automatic Setup

The repository setup script handles everything:

curl -sSL https://pkg.trident-cache.com/setup | sudo sh

Then install:

sudo apt-get install trident

Manual Setup

If you prefer to configure the repository manually:

1. Install prerequisites

sudo apt-get update
sudo apt-get install -y ca-certificates curl gnupg

2. Import the GPG signing key

sudo mkdir -p /usr/share/keyrings
curl -fsSL https://pkg.trident-cache.com/gpg \
  | sudo gpg --dearmor -o /usr/share/keyrings/trident-archive-keyring.gpg

3. Add the repository

echo "deb [signed-by=/usr/share/keyrings/trident-archive-keyring.gpg] https://pkg.trident-cache.com/apt stable main" \
  | sudo tee /etc/apt/sources.list.d/trident.list

4. Install

sudo apt-get update
sudo apt-get install trident

Verify Installation

trident --version

Next Steps