source: networking/netutils/bind-utils.xml@ 6397333

basic
Last change on this file since 6397333 was 6397333, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

Convert internal like to external links for BLFS packages not in
the Basic book.

Reorder some chapters.

Merge System V and systemd sections so both are always displayed
with proper attribution for system type.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/basic@20524 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 4.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY bind-download-http " ">
8 <!ENTITY bind-download-ftp "ftp://ftp.isc.org/isc/bind9/&bind-version;/bind-&bind-version;.tar.gz">
9 <!ENTITY bind-md5sum "01d0524016ac15ea3f4b6c77d99db0b2">
10 <!ENTITY bind-size "8.1 MB">
11 <!ENTITY bind-utils-buildsize "113 MB">
12 <!ENTITY bind-utils-time "0.6 SBU">
13]>
14
15<sect1 id="bind-utils" xreflabel="BIND Utilities-&bind-version;">
16 <?dbhtml filename="bind-utils.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>BIND Utilities-&bind-version;</title>
24
25 <indexterm zone="bind-utils">
26 <primary sortas="a-BIND-Utilities">BIND Utilities</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to BIND Utilities</title>
31
32 <para><application>BIND Utilities</application> is not a separate
33 package, it is a collection of the client side programs that are included
34 with
35 <ulink url="&blfs-book;server/bind.html">bind</ulink>.
36 The <application>BIND</application>
37 package includes the client side programs <command>nslookup</command>,
38 <command>dig</command> and <command>host</command>. If you install
39 <application>BIND</application> server, these programs will be installed
40 automatically. This section is for those users who don't need the complete
41 <application>BIND</application> server, but need these
42 client side applications.</para>
43
44 &lfs83_checked;
45
46 <bridgehead renderas="sect3">Package Information</bridgehead>
47 <itemizedlist spacing="compact">
48 <listitem>
49 <para>Download (HTTP): <ulink url="&bind-download-http;"/></para>
50 </listitem>
51 <listitem>
52 <para>Download (FTP): <ulink url="&bind-download-ftp;"/></para>
53 </listitem>
54 <listitem>
55 <para>Download MD5 sum: &bind-md5sum;</para>
56 </listitem>
57 <listitem>
58 <para>Download size: &bind-size;</para>
59 </listitem>
60 <listitem>
61 <para>Estimated disk space required: &bind-utils-buildsize;</para>
62 </listitem>
63 <listitem>
64 <para>Estimated build time: &bind-utils-time;</para>
65 </listitem>
66 </itemizedlist>
67
68 <bridgehead renderas="sect3">BIND Utilities Dependencies</bridgehead>
69
70 <bridgehead renderas="sect4">Optional</bridgehead>
71 <para role="optional">
72 <ulink url="&blfs-book;postlfs/libcap.html">libcap with PAM</ulink>
73 <ulink url="&blfs-book;general/libxml2.html">libxml2</ulink>
74 </para>
75
76 <para condition="html" role="usernotes">User Notes:
77 <ulink url="&blfs-wiki;/bind-utils"/></para>
78
79 </sect2>
80
81 <sect2 role="installation">
82 <title>Installation of BIND Utilities</title>
83
84 <para>Install <application>BIND Utilities</application> by
85 running the following commands:</para>
86
87 <screen><userinput>./configure --prefix=/usr &amp;&amp;
88make -C lib/dns &amp;&amp;
89make -C lib/isc &amp;&amp;
90make -C lib/bind9 &amp;&amp;
91make -C lib/isccfg &amp;&amp;
92make -C lib/irs &amp;&amp;
93make -C bin/dig</userinput></screen>
94
95 <para>This portion of the package does not come with a test suite.</para>
96
97 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
98
99<screen role='root'><userinput>make -C bin/dig install</userinput></screen>
100
101 </sect2>
102
103 <sect2 role="commands">
104 <title>Command Explanations</title>
105
106 <para><command>make -C lib/...</command>: These commands build the
107 libraries that are needed for the client programs.</para>
108
109 <para><command>make -C bin/dig</command>: This command builds the
110 client programs.</para>
111
112 </sect2>
113
114 <sect2 role="content">
115 <title>Contents</title>
116
117 <segmentedlist>
118 <segtitle>Installed Programs</segtitle>
119 <segtitle>Installed Libraries</segtitle>
120 <segtitle>Installed Directories</segtitle>
121
122 <seglistitem>
123 <seg>dig, host, and nslookup</seg>
124 <seg>None</seg>
125 <seg>None</seg>
126 </seglistitem>
127 </segmentedlist>
128
129 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
130
131 <para>See the program descriptions in the
132 <ulink url="&blfs-book;server/bind.html">bind</ulink>
133 section.</para>
134
135 </sect2>
136
137</sect1>
Note: See TracBrowser for help on using the repository browser.