Datasance Linux Package Repository

Installation Script

RPM System

#install potctl
wget -q -O - https://github.com/datasance/downloads.datasance.com/raw/main/potctl_installer.sh | sudo bash
sudo yum install -y potctl
#install agent
wget -q -O - https://github.com/datasance/downloads.datasance.com/raw/main/agent_installer.sh | sudo bash
sudo yum install -y iofog-agent

DEB System

#install potctl
wget -q -O - https://github.com/datasance/downloads.datasance.com/raw/main/potctl_installer.sh | sudo bash
sudo apt install -y potctl
#install agent
wget -q -O - https://github.com/datasance/downloads.datasance.com/raw/main/agent_installer.sh | sudo bash
sudo apt install -y iofog-agent


Manual

Add a Debian Repository

Download the public key

wget -qO- https://downloads.datasance.com/datasance.gpg | sudo tee /etc/apt/trusted.gpg.d/datasance.gpg >/dev/null

Next, create the source in /etc/apt/sources.list.d/

echo "deb [arch=all signed-by=/etc/apt/trusted.gpg.d/datasance.gpg] https://downloads.datasance.com/deb stable main" | sudo tee /etc/apt/sources.list.d/datansance.list >/dev/null

Then run apt update && apt install -y followed by the names of the packages you want to install.

apt install potctl 
apt install agent 

Add a RPM Repository

Download the repo file cd /etc/yum.repos.d ; curl https://downloads.datasance.com/datasance.repo -LO

Then you can do yum install -y followed by the names of the packages you want to install.

yum install potctl
yum install agent