Skip to content

Getting Started

Eric Schreiber edited this page May 23, 2019 · 11 revisions

The directions below walk through the steps to build and install ETCE and set up SSH for use.

Building and Installing

ETCE can be built as an RPM or DEB from the python-etce project. The master branch always contains the latest release. Older versions are available as tags. Use the develop branch for access to the latest non-stable source.

===

Centos 7

sudo yum install automake autotools libtool make rpm-build python-setuptools epel-release

git clone https://github.com/adjacentlink/python-etce
cd python-etce
./autogen.sh
./configure
make rpm
sudo yum install dist/python-etce-*.rpm

Fedora 29

sudo dnf -y install libtool automake autoconf rpm-build python2-setuptools

git clone https://github.com/adjacentlink/python-etce
cd python-etce
./autogen.sh
./configure
make rpm
sudo dnf install dist/python-etce-*.rpm

Ubuntu 16.04

sudo apt-get install libtool autoconf automake debhelper python-setuptools python-stdeb

git clone https://github.com/adjacentlink/python-etce
cd python-etce
./autogen.sh
./configure
make deb
sudo dpkg -i deb_dist/python-etce_*.deb
sudo apt-get install -f

Ubuntu 18.04

sudo apt-get install libtool autoconf automake debhelper python-setuptools python-stdeb

git clone https://github.com/adjacentlink/python-etce
cd python-etce
./autogen.sh
./configure
make deb
sudo dpkg -i deb_dist/python-etce_*.deb
sudo apt-get install -f

Clone this wiki locally