source: basicnet/netutils/bind-utils.xml@ 89033ca

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 89033ca was 89033ca, checked in by Randy McMurchy <randy@…>, 19 years ago

Added OpenSSL as an optional dependency of the BIND Utilities

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3096 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 3.4 KB
RevLine 
[3bba7e2]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY bind-download-http "http://gd.tuwien.ac.at/infosys/servers/isc/bind9/&bind-version;/bind-&bind-version;.tar.gz">
8 <!ENTITY bind-download-ftp "ftp://ftp.isc.org/isc/bind9/&bind-version;/bind-&bind-version;.tar.gz">
[b8214dc6]9 <!ENTITY bind-size "4.6 MB">
[89033ca]10 <!ENTITY bind-utils-buildsize "52.2 MB">
11 <!ENTITY bind-utils-time "0.65 SBU">
[3bba7e2]12]>
13
[2be0e0d]14<sect1 id="bind-utils" xreflabel="BIND Utilities-&bind-version;">
[a0f03b0]15<sect1info>
[5cd0959d]16<othername>$LastChangedBy$</othername>
17<date>$Date$</date>
[a0f03b0]18</sect1info>
[00bb024c]19<?dbhtml filename="bind-utils.html"?>
[2be0e0d]20<title>BIND Utilities-&bind-version;</title>
[57dda11f]21
[3bba7e2]22<sect2>
[b8214dc6]23<title>Introduction to <application><acronym>BIND</acronym>
24Utilities</application></title>
[3bba7e2]25
26<para><application><acronym>BIND</acronym> Utilities</application> is not a
27separate package, it is a collection of the client side programs that are
28included with <application><xref linkend="bind"/></application>. The
[89033ca]29<application><acronym>BIND</acronym></application> package includes the client
30side programs <command>nslookup</command>, <command>dig</command> and
31<command>host</command>. If you install <application><acronym>BIND</acronym>
[3bba7e2]32</application> server, these programs will be installed automatically. This
[89033ca]33section is for those users who don't need the complete
[3bba7e2]34<application><acronym>BIND</acronym></application> server, but need these
35client side applications.</para>
36
37<sect3><title>Package information</title>
38<itemizedlist spacing='compact'>
39<listitem><para>Download (HTTP): <ulink
40url="&bind-download-http;"/></para></listitem>
41<listitem><para>Download (FTP): <ulink
42url="&bind-download-ftp;"/></para></listitem>
43<listitem><para>Download size: &bind-size;</para></listitem>
[89033ca]44<listitem><para>Estimated disk space required:
[3bba7e2]45&bind-utils-buildsize;</para></listitem>
46<listitem><para>Estimated build time:
47&bind-utils-time;</para></listitem></itemizedlist>
48</sect3>
49
[89033ca]50<sect3><title><application><acronym>BIND</acronym> Utilities</application>
51dependencies</title>
52<sect4><title>Optional</title>
53<para><xref linkend="openssl"/></para>
54</sect4>
55</sect3>
56
[3bba7e2]57</sect2>
58
59<sect2>
[b8214dc6]60<title>Installation of <application><acronym>BIND</acronym>
61Utilities</application></title>
[3bba7e2]62
[b8214dc6]63<para>Install
64<application><acronym>BIND</acronym> Utilities</application> by
[3bba7e2]65running the following commands:</para>
66
67<screen><userinput>./configure --prefix=/usr &amp;&amp;
68make -C lib/dns &amp;&amp;
69make -C lib/isc &amp;&amp;
[b8214dc6]70make -C lib/bind9 &amp;&amp;
71make -C lib/isccfg &amp;&amp;
72make -C lib/lwres &amp;&amp;
[3bba7e2]73make -C bin/dig &amp;&amp;
74make -C bin/dig install</userinput></screen>
75
76</sect2>
77
78<sect2>
79<title>Command explanations</title>
80
[b8214dc6]81<para><command>make -C lib/...</command>: These commands build the
82libraries that are needed for the client programs.</para>
[3bba7e2]83
[b8214dc6]84<para><command>make -C bin/dig</command>: This command builds the
85client programs.</para>
[3bba7e2]86
87</sect2>
88
89<sect2>
90<title>Contents</title>
91
92<para>The <application><acronym>BIND</acronym> Utilities</application> package
[89033ca]93contains <command>dig</command>, <command>host</command> and
[3bba7e2]94<command>nslookup</command>.</para>
95
96</sect2>
[57dda11f]97
[89033ca]98<sect2>
99<title>Description</title>
100
101<para>See the program descriptions in the <xref linkend="bind"/>
102section.</para>
103
104</sect2>
105
[57dda11f]106</sect1>
107
Note: See TracBrowser for help on using the repository browser.