> For the complete documentation index, see [llms.txt](https://developer.harness.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.harness.io/traceable/agent-docs/common/setting-up-traceable-repository.md).

# Introduction

## Introduction

Traceable publishes various packages to the APT and YUM repository like the Traceable Platform Agent, eBPF and Nginx. Follow the package manager specific steps for configuring the repository.

## Ubuntu

1. Add the repository details

   ```shell
   echo "deb [trusted=yes] https://packages.traceable.ai/ubuntu/ focal main" | sudo tee -a /etc/apt/sources.list.d/traceable.list
   ```
2. Perform apt update so that our repository also gets indexed and packages published there can be discovered.

   ```shell
   sudo apt update
   ```

## CentOs, Rhel, AmazonLinux

1. Add the repository details

   ```shell
   echo  "[traceable]\nname=Traceable repository\nbaseurl=https://packages.traceable.ai/centos7/\nenabled=1\ngpgcheck=0" | 
   sudo tee -a /etc/yum.repos.d/traceable.repo
   ```
2. Perform apt update so that our repository also gets indexed and packages published there can be discovered.

   ```shell
   sudo yum update
   ```
