-
Notifications
You must be signed in to change notification settings - Fork 3
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.
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.
===
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
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
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
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