Skip to content
Snippets Groups Projects
Forked from Knot projects / Knot DNS
16830 commits behind the upstream repository.
user avatar
Jan Mercl authored
55532334
History
Installation
============

The following steps should work (verified in VirtualBox only) for:

	Ubuntu Server (AMD64) 10.04 LTS

$ # make the system up-to-date
$
$ sudo apt-get update
$ sudo apt-get upgrade
$
$ # ensure all prerequisities are installed
$
$ sudo apt-get install git-core autoconf libtool flex bison libssl-dev libev-dev
$
$ # the required version of liburcu is not avaliable in the 'lucid' packages
$
$ wget http://bd.archive.ubuntu.com/ubuntu/pool/universe/libu/liburcu/liburcu0_0.5.4-1_amd64.deb
$ wget http://bd.archive.ubuntu.com/ubuntu/pool/universe/libu/liburcu/liburcu-dev_0.5.4-1_amd64.deb
$ sudo dpkg -i liburcu0_0.5.4-1_amd64.deb
$ sudo dpkg -i liburcu-dev_0.5.4-1_amd64.deb
$
$ # go for the real thing
$
$ git clone git://git.nic.cz/knot
$ cd knot
$ git checkout testing
$ autoreconf -if
$ ./configure
$ sudo make install
$ sudo ldconfig