Eclipse ioFog Linux Package Repository published by Datasance
Installation Script
RPM System
#install iofogctl
wget -q -O - https://iofog.datasance.com/iofogctl_installer.sh | sudo bash
sudo yum install -y iofogctl
#install agent
wget -q -O - https://iofog.datasance.com/iofog-agent_installer.sh | sudo bash
sudo yum install -y iofog-agent
DEB System
#install iofogctl
wget -q -O - https://iofog.datasance.com/iofogctl_installer.sh | sudo bash
sudo apt install -y iofogctl
#install iofog-agent
wget -q -O - https://iofog.datasance.com/iofog-agent_installer.sh | sudo bash
sudo apt install -y iofog-agent
Manual
Add a Debian Repository
Download the public key
wget -qO- https://iofog.datasance.com/iofog.gpg | sudo tee /etc/apt/trusted.gpg.d/iofog.gpg >/dev/null
Next, create the source in /etc/apt/sources.list.d/
echo "deb [arch=all signed-by=/etc/apt/trusted.gpg.d/iofog.gpg] https://iofog.datasance.com/deb stable main" | sudo tee /etc/apt/sources.list.d/iofog.list >/dev/null
Then run apt update && apt install -y followed by the names of the packages you want to install.
apt install iofogctl
apt install iofog-agent
Add a RPM Repository
Download the repo file cd /etc/yum.repos.d ; curl https://iofog.datasance.com/iofog.repo -LO
Then you can do yum install -y followed by the names of the packages you want to install.
yum install iofogctl
yum install iofog-agent