Debian & RPM packages for the Octez suite.
These packages are provided by the Tezos Foundation and are currently under test. They are different from the official packages supplied by Nomadic Labs, which are being deprecated.
For Debian and Ubuntu, import the GPG key:
sudo apt install -y gpg curl
curl -s "https://apt.tzinit.org/keys/tzinit.asc" | \
sudo gpg --dearmor -o /etc/apt/keyrings/tzinit.gpg
Set up the APT repository. For Debian 13 (trixie) use:
echo "deb [signed-by=/etc/apt/keyrings/tzinit.gpg] https://apt.tzinit.org/debian trixie main" \
| sudo tee /etc/apt/sources.list.d/tzinit-octez.list
For Ubuntu 24.04 (noble) use:
echo "deb [signed-by=/etc/apt/keyrings/tzinit.gpg] https://apt.tzinit.org/ubuntu noble main" \
| sudo tee /etc/apt/sources.list.d/tzinit-octez.list
Then:
sudo apt update sudo apt install -y octez-baker
For development versions, use https://apt.tzinit.org/DEVEL/debian or https://apt.tzinit.org/DEVEL/ubuntu. If you are running on older hardware and have trouble with the BLS optimisations, you can use https://apt.tzinit.org/BLSTPORTABLE/debian or https://apt.tzinit.org/BLSTPORTABLE/ubuntu
| OS | Debian 13 (Trixie) | Ubuntu 24.04 (Noble) | ||
| Arch | x86_64 | arm64 | x86_64 | arm64 |
| Release | release | release | release | release |
| Dev versions | dev | dev | dev | dev |
| OS | Rocky Linux 9 | Rocky Linux 10 | ||
| Arch | x86_64 | arm64 | x86_64 | arm64 |
| Release | release | release | release | release |
| Dev versions | dev | dev | dev | dev |
The RPMs are treated as second-class citizens I'm afraid. Please report problems to the Chief Baker. To make your Rocky Linux machine ready, do the following as root:
dnf install -y 'dnf-command(config-manager)' dnf config-manager --set-enabled crb dnf config-manager --set-enabled devel dnf update -y
To install the client (replace 25.1 with the version of your choice):
dnf install -y https://packages.tzinit.org/release/rocky-linux-9/octez-client-25.1-1.x86_64.rpm
To install the node:
dnf install -y https://packages.tzinit.org/release/rocky-linux-9/octez-zcash-params-1.0.0-1.x86_64.rpm dnf install -y https://packages.tzinit.org/release/rocky-linux-9/octez-node-25.1-1.x86_64.rpm
etc.