RTI APT Repository ################## An APT (Advanced Packaging Tool) repository is a collection of packages that can be read by Debian-based Linux systems. RTI's APT repository enables you to install |ConnextShort| using a Debian package. Installation packages are available for |ConnextShort| versions 6.1.2 LTS through 7.3.0 LTS. .. _section-repository-access: Enable Repository Access ************************ Before you can install |ConnextShort| using a Debian package, you must first enable access to the RTI APT repository: 1. Download the public key for the RTI APT repository: .. code-block:: shell sudo curl -sSL -o /usr/share/keyrings/rti-official-archive.gpg \ https://packages.rti.com/deb/official/repo.key 2. Create a configuration file to point ``apt`` to the right repository for your system: .. code-block:: shell printf -- "deb [arch=%s, signed-by=%s] %s %s main\n" \ $(dpkg --print-architecture) \ /usr/share/keyrings/rti-official-archive.gpg \ https://packages.rti.com/deb/official \ $(. /etc/os-release && echo ${VERSION_CODENAME}) | sudo tee /etc/apt/sources.list.d/rti.list >/dev/null 3. Update the local ``apt`` cache: .. code-block:: shell sudo apt-get update