Octium Package Repositories

These are the package repositories for octium. They are served by GitHub Pages at https://repo.octium.dev.

Install octium on Debian/Ubuntu

Add the repository signing key and apt source, then install the package:

sudo install -d -m 0755 /etc/apt/keyrings
curl -fsSL https://repo.octium.dev/octium-archive-keyring.gpg \
  | sudo tee /etc/apt/keyrings/octium-archive-keyring.gpg > /dev/null
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/octium-archive-keyring.gpg] https://repo.octium.dev stable main" \
  | sudo tee /etc/apt/sources.list.d/octium.list
sudo apt update
sudo apt install octium

Install octium on Fedora/RHEL-compatible systems

Add the yum/dnf repository, then install the package:

sudo dnf config-manager --add-repo https://repo.octium.dev/rpm/octium.repo
sudo dnf install octium

If dnf config-manager is unavailable, create the repo file directly:

sudo curl -fsSL https://repo.octium.dev/rpm/octium.repo \
  -o /etc/yum.repos.d/octium.repo
sudo dnf install octium

Older Red Hat-compatible systems may use yum instead of dnf.

The repo file enables repo_gpgcheck=1, so dnf verifies the repository metadata signature. The RPM payloads are published without package signing, so gpgcheck is disabled for this repo.

Repository details

Apt codename: stable
Apt component: main
Apt architecture: amd64
RPM repository: https://repo.octium.dev/rpm/$basearch
RPM architecture: x86_64

The ASCII-armored public signing key is available at /octium-archive-keyring.asc.