source: basicnet/netutils/bind-utils.xml@ 0aeb696

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.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 0aeb696 was 0aeb696, checked in by Randy McMurchy <randy@…>, 18 years ago

Added a comment to each file that may need a mention of a test suite added to it, this allows closing of bug #1697

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

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