debs.strawlab.org

This website contains Debian and Ubuntu packages, courtesy of the Straw Lab.

How to add this to your system

Option 1 (preferred): Use our ansible recipes

Follow the instructions at github.com/strawlab/strawlab-ansible-roles

Option 2: Manual installation

First, you need to gain root permissions. With Ubuntu, do this:

sudo -s -H

alternatively, with Debian, do this:

su root

Then, in the same terminal window where you gained root, install our archive keyring and update your package list:

apt-get install -y curl lsb-release
curl https://strawlab.org/assets/gpg/astraw-`lsb_release  --codename --short`.gpg  -o /tmp/astraw-archive-key.gpg
apt-key add /tmp/astraw-archive-key.gpg
echo "deb http://debs.strawlab.org/ `lsb_release  --codename --short`/" > /etc/apt/sources.list.d/strawlab_public.list
apt-get update