Debian Arch Fedora

Debian

Add our repo to your system by running this command (copy & paste all at once into a terminal)

sudo apt update && sudo apt install curl && \
sudo install -m 0755 -d /etc/apt/keyrings && \
sudo curl -fsSL https://repo.iqo.uni-hannover.de/gpg -o /etc/apt/keyrings/inventory.gpg && \
sudo chmod a+r /etc/apt/keyrings/inventory.gpg && \
echo "deb [arch=all signed-by=/etc/apt/keyrings/inventory.gpg] https://repo.iqo.uni-hannover.de/deb stable main" | sudo tee /etc/apt/sources.list.d/inventory.list > /dev/null && \
sudo apt update
            

You can now install packages from our repo

Arch

Add our repo to your system by running this command (copy & paste all at once into a terminal)

echo -e "[inventory]\nServer = https://repo.iqo.uni-hannover.de/arch" | sudo tee -a /etc/pacman.conf > /dev/null && \
sudo pacman-key --recv-keys 373447AB2C5C3CF2 && \
sudo pacman-key --lsign-key 373447AB2C5C3CF2 && \
sudo pacman -Sy
            

You can now install packages from our repo

Fedora

Add our repo to your system by running this command (copy & paste all at once into a terminal)

sudo dnf -y install curl && \
sudo curl -fsSL https://repo.iqo.uni-hannover.de/rpm/inventory.repo -o /etc/yum.repos.d/inventory.repo
            

You can now install packages from our repo

Copied to clipboard!