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

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since cc64b232 was cc64b232, checked in by Douglas R. Reno <renodr@…>, 4 years ago

Update to cmake-3.18.0
Update to BIND-9.16.5

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

  • Property mode set to 100644
File size: 4.7 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.xz">
9 <!ENTITY bind-md5sum "5ef3e773f671886a40148c4dd01d017a">
10 <!ENTITY bind-size "3.3 MB">
11 <!ENTITY bind-utils-buildsize "145 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>
33 <application>BIND Utilities</application> is not a separate
34 package, it is a collection of the client side programs that are included
35 with <xref linkend="bind"/>. The <application>BIND</application>
36 package includes the client side programs <command>nslookup</command>,
37 <command>dig</command> and <command>host</command>. If you install
38 <application>BIND</application> server, these programs will be installed
39 automatically. This section is for those users who don't need the complete
40 <application>BIND</application> server, but need these
41 client side applications.</para>
42
43 &lfs91_checked;
44
45 <bridgehead renderas="sect3">Package Information</bridgehead>
46 <itemizedlist spacing="compact">
47 <listitem>
48 <para>
49 Download (HTTP): <ulink url="&bind-download-http;"/></para>
50 </listitem>
51 <listitem>
52 <para>
53 Download (FTP): <ulink url="&bind-download-ftp;"/></para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &bind-md5sum;</para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &bind-size;</para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &bind-utils-buildsize;</para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &bind-utils-time;</para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">BIND Utilities Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Required</bridgehead>
76 <para role="required">
77 <xref linkend="libuv"/>
78 </para>
79
80 <bridgehead renderas="sect4">Recommended</bridgehead>
81 <para role="recommended">
82 <xref linkend="json-c"/>
83 </para>
84
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para role="optional">
87 <xref linkend="libcap-pam"/> and
88 <xref linkend="libxml2"/>
89 </para>
90
91 <para condition="html" role="usernotes">User Notes:
92 <ulink url="&blfs-wiki;/bind-utils"/></para>
93
94 </sect2>
95
96 <sect2 role="installation">
97 <title>Installation of BIND Utilities</title>
98
99 <para>
100 Install <application>BIND Utilities</application> by
101 running the following commands:</para>
102
103 <screen><userinput>./configure --prefix=/usr --without-python &amp;&amp;
104make -C lib/dns &amp;&amp;
105make -C lib/isc &amp;&amp;
106make -C lib/bind9 &amp;&amp;
107make -C lib/isccfg &amp;&amp;
108make -C lib/irs &amp;&amp;
109make -C bin/dig</userinput></screen>
110
111 <para>
112 This portion of the package does not come with a test suite.</para>
113
114 <para>
115 Now, as the <systemitem class="username">root</systemitem> user:</para>
116
117<screen role='root'><userinput>make -C bin/dig install</userinput></screen>
118
119 </sect2>
120
121 <sect2 role="commands">
122 <title>Command Explanations</title>
123
124 <para>
125 <parameter>--without-python</parameter>: This option eliminates
126 the need for an unused python module.</para>
127
128 <para>
129 <command>make -C lib/...</command>: These commands build the
130 libraries that are needed for the client programs.</para>
131
132 <para>
133 <command>make -C bin/dig</command>: This command builds the
134 client programs.</para>
135
136 </sect2>
137
138 <sect2 role="content">
139 <title>Contents</title>
140
141 <segmentedlist>
142 <segtitle>Installed Programs</segtitle>
143 <segtitle>Installed Libraries</segtitle>
144 <segtitle>Installed Directories</segtitle>
145
146 <seglistitem>
147 <seg>dig, host, and nslookup</seg>
148 <seg>None</seg>
149 <seg>None</seg>
150 </seglistitem>
151 </segmentedlist>
152
153 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
154
155 <para>
156 See the program descriptions in the <xref linkend="bind"/> section.
157 </para>
158
159 </sect2>
160
161</sect1>
Note: See TracBrowser for help on using the repository browser.