1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
<html> <head>
<title>tinydyndns - installation</title>
</head>
<body>
<a href="http://smarden.org/pape/">G. Pape</a><br>
<a href="index.html">tinydyndns</a>
<hr>
<h1>tinydyndns - installation</h1>
<hr>
Check that you have the recent version of
<a href="http://cr.yp.to/daemontools.html">daemontools</a>,
<a href="http://cr.yp.to/djbdns.html">djbdns</a>,
<a href="http://untroubled.org/mailfront/">mailfront</a> and
<a href="http://untroubled.org/cvm/">cvm</a> installed.
<p>
If you run <a href="http://www.debian.org/">Debian GNU/Linux</a> (woody,
sarge, or sid), just add the location of the
<a href="http://smarden.org/pape/Debian/">smarden debian packages</a> to
the <i>apt</i> <tt>sources.list</tt> and do:
<pre>
# apt-get update
# apt-get install daemontools djbdns mailfront cvm
</pre>
<p>
<i>tinydyndns</i> uses the djbdns sources to build. Download
<a href="http://cr.yp.to/djbdns/djbdns-1.05.tar.gz">djbdns-1.05.tar.gz</a>
and <a href="tinydyndns-0.4.2.tar.gz">tinydyndns-0.4.2.tar.gz</a>
and unpack the archives:
<pre>
# gunzip djbdns-1.05.tar
# tar -xpf djbdns-1.05.tar
# rm djbdns-1.05.tar
# gunzip tinydyndns-0.4.2.tar
# tar -xpf tinydyndns-0.4.2.tar
# rm tinydyndns-0.4.2.tar
</pre>
Note that you possibly need to apply a patch to djbdns when using newer
version of glibc.
If so, see <a href="http://djbdns.org/">djbdns.org</a>.
<p>
Copy the source files of <i>tinydyndns</i> into the <i>djbdns</i> source
directory and compile the <i>tinydyndns</i> programs:
<pre>
# cp tinydyndns-0.4.2/* djbdns-1.05/
# cd djbdns-1.05
# make -f Makefile.tinydyndns
</pre>
Install the <i>tinydyndns</i> programs in <tt>/usr/local/bin</tt>:
<pre>
# make -f Makefile.tinydyndns install-tinydyndns
</pre>
If you want to make the man pages available, compress them and copy them
into a directory <i>man</i> will look in (see $MANPATH):
<pre>
# gzip tinydyndns-*.8
# install -m0644 tinydyndns-*.8.gz /usr/local/man/man8/
</pre>
<hr>
See <a href="configuration.html">Configuration</a> for setting up your
own <i>pop-before-dyndns</i> service or something similar.
<hr>
<address><a href="mailto:pape@smarden.org">
Gerrit Pape <pape@smarden.org>
</a></address>
</body>
</html>
|