Bind selbst kompiliert (Ubuntu): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „ Zurück zu Bind“)
 
Zeile 1: Zeile 1:
{{note|Noch in Bearbeitung}}




== Voraussetzungen ==


<pre>
sudo apt-get install -y gcc make libssl-dev
</pre>


== Download ==


Zurück zu [[Bind (Linux)|Bind]]
[http://www.bind9.net/download http://www.bind9.net/download]
 
<pre>
wget http://gd.tuwien.ac.at/infosys/servers/isc/bind9/9.9.0rc4/bind-9.9.0rc4.tar.gz
</pre>
 
== Installation ==
 
<pre>
tar -xzf bind-9.9.0rc4.tar.gz
cd bind-9.9.0rc4/
./configure
make
sudo make install
</pre>
 
Installationsverzeichnisse sind:
<pre>
/usr/local/bin/
/usr/local/include/
/usr/local/lib/
/usr/local/sbin/
</pre>
 
== Links ==
 
[http://mysql-bind.sourceforge.net/ http://mysql-bind.sourceforge.net/]
 
[https://www.md6.ch/?page_id=385 https://www.md6.ch/?page_id=385]
 
 
Zurück zu [[Ubuntu#B (Server)|Ubuntu]]

Version vom 2. Juli 2017, 23:23 Uhr

Noch in Bearbeitung


Voraussetzungen

sudo apt-get install -y gcc make libssl-dev

Download

http://www.bind9.net/download

wget http://gd.tuwien.ac.at/infosys/servers/isc/bind9/9.9.0rc4/bind-9.9.0rc4.tar.gz

Installation

tar -xzf bind-9.9.0rc4.tar.gz
cd bind-9.9.0rc4/
./configure
make
sudo make install

Installationsverzeichnisse sind:

/usr/local/bin/
/usr/local/include/
/usr/local/lib/
/usr/local/sbin/

Links

http://mysql-bind.sourceforge.net/

https://www.md6.ch/?page_id=385


Zurück zu Ubuntu