Ignore:
Timestamp:
09/26/2002 03:28:43 AM (22 years ago)
Author:
Larry Lawrence <larry@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.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, v1_0, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
0049113
Parents:
7d2ba56
Message:

format edited some exp and desc sections

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/other/bind/bind-config-exp.xml

    r7d2ba56 r14951df  
    11<sect2>
    22<title>Configuration command explanations</title>
    3 <para><userinput>
    4 groupadd -g 200 named &amp;&amp;
    5 useradd -m -g named -u 200 -s /bin/false named &amp;&amp;
    6 cd /home/named &amp;&amp;
    7 mkdir -p dev etc/namedb/slave var/run &amp;&amp;
    8 mknod /home/named/dev/null c 1 3 &amp;&amp;
    9 mknod /home/named/dev/random c 1 8 &amp;&amp;
    10 chmod 666 /home/named/dev/{null,random} &amp;&amp;
    11 mkdir /home/named/etc/namedb/pz &amp;&amp;
    12 cp /etc/localtime /home/named/etc : </userinput>
     3<para><screen><userinput>
     4groupadd -g 200 named
     5useradd -m -g named -u 200 -s /bin/false named
     6cd /home/named
     7mkdir -p dev etc/namedb/slave var/run
     8mknod /home/named/dev/null c 1 3
     9mknod /home/named/dev/random c 1 8
     10chmod 666 /home/named/dev/{null,random}
     11mkdir /home/named/etc/namedb/pz
     12cp /etc/localtime /home/named/etc : </userinput></screen>
    1313
    1414Create the unprivileged user and group named, along with device files
     
    1616
    1717<para><userinput>
    18 cat &gt; /home/named/etc/named.conf &lt;&lt; "EOF" : </userinput>
     18cat &gt; /home/named/etc/named.conf &lt;&lt; "EOF" :</userinput>
    1919Create the BIND configuration file, from which named will read the
    2020location of zone files, root nameservers and secure DNS keys.</para>
    2121<para><userinput>
    22 cat &gt; /home/named/etc/namedb/pz/127.0.0 &lt;&lt; "EOF" : </userinput>
     22cat &gt; /home/named/etc/namedb/pz/127.0.0 &lt;&lt; "EOF" :</userinput>
    2323Create a single zone file.</para>
    2424<para><userinput>
    25 cat > /home/named/etc/namedb/root.hints << "EOF" : </userinput>
     25cat > /home/named/etc/namedb/root.hints << "EOF" :</userinput>
    2626The root.hints file is a list of root nameservers.  This file must be
    2727updated periodically with the dig utility.  Consult the BIND 9
    2828Administrator Reference Manual for details.</para>
    2929<para><userinput>
    30 cat > /etc/rndc.conf << "EOF" : </userinput>
     30cat > /etc/rndc.conf << "EOF" :</userinput>
    3131The rncd.conf file contains information for controlling named
    3232operations with the rndc utility.</para>
    3333
    3434<para><userinput>
    35 cat > /etc/resolv.conf << "EOF" : </userinput>
     35cat > /etc/resolv.conf << "EOF" :</userinput>
    3636The resolv.conf file will specify the local host(127.0.0.1) as the
    3737nameserver.</para>
    3838
    3939<para><userinput>
    40 cat > /etc/rc.d/init.d/bind << "EOF" : </userinput>
     40cat > /etc/rc.d/init.d/bind << "EOF" :</userinput>
    4141Create the boot script for BIND 9, used to start and stop the name
    4242server daemon, named.</para>
Note: See TracChangeset for help on using the changeset viewer.