source: networking/netutils/bind-utils.xml@ 5fef9010

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules 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 5fef9010 was 5fef9010, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

Update to QupZilla-2.2.4.
Update to bind9-9.11.2-P1.
Update to babl-0.1.40.
Update to libtasn1-4.13.
Update to libsigsegv-2.12.

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

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