mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-25 07:42:13 +08:00
4676c15df1
Update to sudo-1.9.4p1. Update to LWP-Protocol-https-6.10 (Perl Module). Update to node-14.15.3. Update to bind-9.16.9 (including utils). git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@24003 af4574ff-66df-0310-9fd7-8a98e5e911e0
178 lines
5.1 KiB
XML
178 lines
5.1 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
|
%general-entities;
|
|
|
|
<!ENTITY bind-download-http " ">
|
|
<!ENTITY bind-download-ftp "ftp://ftp.isc.org/isc/bind9/&bind-version;/bind-&bind-version;.tar.xz">
|
|
<!ENTITY bind-md5sum "32463c0fe91abaf4894eee09a97f1ce6">
|
|
<!ENTITY bind-size "3.1 MB">
|
|
<!ENTITY bind-utils-buildsize "112 MB">
|
|
<!ENTITY bind-utils-time "0.5 SBU">
|
|
]>
|
|
|
|
<sect1 id="bind-utils" xreflabel="BIND Utilities-&bind-version;">
|
|
<?dbhtml filename="bind-utils.html"?>
|
|
|
|
<sect1info>
|
|
<othername>$LastChangedBy$</othername>
|
|
<date>$Date$</date>
|
|
</sect1info>
|
|
|
|
<title>BIND Utilities-&bind-version;</title>
|
|
|
|
<indexterm zone="bind-utils">
|
|
<primary sortas="a-BIND-Utilities">BIND Utilities</primary>
|
|
</indexterm>
|
|
|
|
<sect2 role="package">
|
|
<title>Introduction to BIND Utilities</title>
|
|
|
|
<para>
|
|
<application>BIND Utilities</application> is not a separate
|
|
package, it is a collection of the client side programs that are included
|
|
with <xref linkend="bind"/>. The <application>BIND</application>
|
|
package includes the client side programs <command>nslookup</command>,
|
|
<command>dig</command> and <command>host</command>. If you install
|
|
<application>BIND</application> server, these programs will be installed
|
|
automatically. This section is for those users who don't need the complete
|
|
<application>BIND</application> server, but need these
|
|
client side applications.</para>
|
|
|
|
&lfs10_checked;
|
|
|
|
<bridgehead renderas="sect3">Package Information</bridgehead>
|
|
<itemizedlist spacing="compact">
|
|
<listitem>
|
|
<para>
|
|
Download (HTTP): <ulink url="&bind-download-http;"/></para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download (FTP): <ulink url="&bind-download-ftp;"/></para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download MD5 sum: &bind-md5sum;</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download size: &bind-size;</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated disk space required: &bind-utils-buildsize;</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated build time: &bind-utils-time;</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
|
|
<bridgehead renderas="sect3">BIND Utilities Dependencies</bridgehead>
|
|
|
|
<bridgehead renderas="sect4">Required</bridgehead>
|
|
<para role="required">
|
|
<xref linkend="libuv"/>
|
|
</para>
|
|
|
|
<bridgehead renderas="sect4">Recommended</bridgehead>
|
|
<para role="recommended">
|
|
<xref linkend="json-c"/>
|
|
</para>
|
|
|
|
<bridgehead renderas="sect4">Optional</bridgehead>
|
|
<para role="optional">
|
|
<xref linkend="libcap-pam"/>,
|
|
<xref linkend="libxml2"/>, and
|
|
<ulink url="https://www.sphinx-doc.org/en/master/">Sphinx</ulink>
|
|
</para>
|
|
|
|
<para condition="html" role="usernotes">User Notes:
|
|
<ulink url="&blfs-wiki;/bind-utils"/></para>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="installation">
|
|
<title>Installation of BIND Utilities</title>
|
|
|
|
<para>
|
|
Install <application>BIND Utilities</application> by
|
|
running the following commands:</para>
|
|
|
|
<screen><userinput>./configure --prefix=/usr --without-python &&
|
|
make -C lib/dns &&
|
|
make -C lib/isc &&
|
|
make -C lib/bind9 &&
|
|
make -C lib/isccfg &&
|
|
make -C lib/irs &&
|
|
make -C bin/dig &&
|
|
make -C doc</userinput></screen>
|
|
|
|
<para>
|
|
This portion of the package does not come with a test suite.</para>
|
|
|
|
<para>
|
|
Now, as the <systemitem class="username">root</systemitem> user:</para>
|
|
|
|
<screen role='root'><userinput>make -C bin/dig install &&
|
|
cp -v doc/man/{dig.1,host.1,nslookup.1} /usr/share/man/man1</userinput></screen>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="commands">
|
|
<title>Command Explanations</title>
|
|
|
|
<para>
|
|
<parameter>--without-python</parameter>: This option eliminates
|
|
the need for an unused python module.
|
|
</para>
|
|
|
|
<para>
|
|
<command>make -C lib/...</command>: These commands build the
|
|
libraries that are needed for the client programs.
|
|
</para>
|
|
|
|
<para>
|
|
<command>make -C bin/dig</command>: This command builds the
|
|
client programs.
|
|
</para>
|
|
|
|
<para>
|
|
<command>make -C doc</command>: This command builds the
|
|
manual pages.
|
|
</para>
|
|
|
|
<para>
|
|
<command>cp -v ... /usr/share/man/man1</command>: This command
|
|
installs the manual pages.
|
|
</para>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="content">
|
|
<title>Contents</title>
|
|
|
|
<segmentedlist>
|
|
<segtitle>Installed Programs</segtitle>
|
|
<segtitle>Installed Libraries</segtitle>
|
|
<segtitle>Installed Directories</segtitle>
|
|
|
|
<seglistitem>
|
|
<seg>dig, host, and nslookup</seg>
|
|
<seg>None</seg>
|
|
<seg>None</seg>
|
|
</seglistitem>
|
|
</segmentedlist>
|
|
|
|
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
|
|
|
<para>
|
|
See the program descriptions in the <xref linkend="bind"/> section.
|
|
</para>
|
|
|
|
</sect2>
|
|
|
|
</sect1>
|