-
Notifications
You must be signed in to change notification settings - Fork 37
Installation on Fedora Linux
Carsten Strotmann edited this page Jan 5, 2017
·
2 revisions
tested 2017-01-05 by Carsten
Install packages as root:
# sudo dnf install boost-devel botan-devel gtest-devel lcov python3-devel sqlite-devel log4cplus-devel libtool git automake autoconf gcc-c++ python3-setproctitle
We are now ready to get and compile Bundy-DNS:
# git clone https://github.com/bundy-dns/bundy.git
# cd bundy
# autoreconf -i # this tool is provided by automake package. it generates the configure script.
# ./configure --prefix=/opt/bundy --with-log4cplus=/usr --with-gtest=/usr --disable-dhcp
# make
# make check # run the unit tests
# sudo make install # this installs Bundy-DNS in /opt/bundy
At the end of these steps, Bundy-DNS should be installed in /opt/bundy.