Install EventStore oss on Ubuntu from PackageCloud

Morning,

I’m trying to install EventStore on an Ubuntu vm in a cloud (Digital Ocean) for testing.

I run the following command

curl -s https://packagecloud.io/install/repositories/EventStore/EventStore-OSS/script.deb.sh | sudo bash

I also run

apt-get update

apt-get upgrade

But when I run

sudo apt-get install eventstore-oss=4.0.1

I get the following error

E: Unable to locate package eventstore-oss

I tried both xenial and trusty

I’m new to linux so I’m sure I’m missing some simple settings or commands.

Thanks

Riccardo

Found the missed part. I had to run the commands described in the following page https://packagecloud.io/EventStore/EventStore-OSS/install#manual
plus add the repositories to the /etc/apt/sources.list

using the following commands

echo “deb https://packagecloud.io/EventStore/EventStore-OSS/ubuntu/ trusty main” | sudo tee -a /etc/apt/sources.list

echo “deb-src https://packagecloud.io/EventStore/EventStore-OSS/ubuntu/ trusty main” | sudo tee -a /etc/apt/sources.list