source: networking/netutils/bind-utils.xml@ 6d15c62

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 6d15c62 was 6d15c62, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Rearrange package organization

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

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