Corrected a chmod command in the BIND instructions

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@7166 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Randy McMurchy 2008-01-10 05:18:18 +00:00
parent c58002d2d8
commit d4a47c5afb
3 changed files with 30 additions and 17 deletions

View File

@ -3,11 +3,11 @@ $LastChangedBy$
$Date$
-->
<!ENTITY day "29"> <!-- Always 2 digits -->
<!ENTITY month "12"> <!-- Always 2 digits -->
<!ENTITY year "2007">
<!ENTITY day "10"> <!-- Always 2 digits -->
<!ENTITY month "01"> <!-- Always 2 digits -->
<!ENTITY year "2008">
<!ENTITY version "svn-&year;&month;&day;">
<!ENTITY releasedate "December &day;th, &year;">
<!ENTITY releasedate "January &day;th, &year;">
<!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
<!ENTITY blfs-version "svn"> <!-- svn|[release #] -->
<!ENTITY lfs-version "development"> <!-- version|testing|unstable|development] -->

View File

@ -41,6 +41,16 @@
-->
<listitem>
<para>January 10th, 2008</para>
<itemizedlist>
<listitem>
<para>[randy] - Corrected a chmod command in the BIND
instructions.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>December 29th, 2007</para>
<itemizedlist>

View File

@ -7,7 +7,7 @@
<!ENTITY bind-download-ftp "ftp://ftp.isc.org/isc/bind9/&bind-version;/bind-&bind-version;.tar.gz">
<!ENTITY bind-md5sum "44e0514e6105ddaa235394045d9aeb0c">
<!ENTITY bind-size "6.1 MB">
<!ENTITY bind-buildsize "85 MB">
<!ENTITY bind-buildsize "98 MB">
<!ENTITY bind-time "1.9 SBU (additional 11 minutes, processor independent, to run the complete test suite)">
]>
@ -63,10 +63,8 @@
<para role="optional"><xref linkend="net-tools"/> (for <command>ifconfig</command>)
and <xref linkend="perl-net-dns"/></para>
<bridgehead renderas="sect4">Optional (to [Re]Build
Documentation)</bridgehead>
<para role="optional">
<xref linkend="tetex"/> and
<bridgehead renderas="sect4">Optional to [Re]Build Documentation</bridgehead>
<para role="optional"><xref linkend="tetex"/> and
<xref linkend="libxslt"/></para>
<para condition="html" role="usernotes">User Notes:
@ -80,13 +78,17 @@
<para>Install <application>BIND</application> by running the
following commands:</para>
<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
--enable-threads --with-libtool &amp;&amp;
<screen><userinput>./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/share/man \
--enable-threads \
--with-libtool &amp;&amp;
make</userinput></screen>
<para>Issue the following commands to run the complete suite of tests.
First, as <systemitem class="username">root</systemitem>, set up some test
interfaces:</para>
First, as the <systemitem class="username">root</systemitem> user, set up
some test interfaces:</para>
<screen role="root"><userinput>bin/tests/system/ifconfig.sh up</userinput></screen>
@ -108,7 +110,8 @@ make</userinput></screen>
class="username">root</systemitem> user:</para>
<screen role="root"><userinput>make install &amp;&amp;
chmod 755 /usr/lib/{lib{bind9,isc{,cc,cfg},lwres,dns}.so.*.?.?} &amp;&amp;
chmod 755 /usr/lib/lib{bind9,isc{,cc,cfg},lwres,dns}.so.*.?.? &amp;&amp;
cd doc &amp;&amp;
install -v -d -m755 /usr/share/doc/bind-&bind-version;/{arm,draft,misc,rfc} &amp;&amp;
install -v -m644 arm/*.html \
@ -143,9 +146,9 @@ install -v -m644 \
Enable the execute bit to prevent a warning when using
<command>ldd</command> to check library dependencies.</para>
<para><command>cd doc; install ...</command>: These commands install the
additional package documentation. Optionally, omit any or all of these
commands.</para>
<para><command>cd doc; install ...</command>: These commands install
additional package documentation. Omit any or all of these commands if
desired.</para>
</sect2>