Changeset cc519cf for chapter06


Ignore:
Timestamp:
05/18/2013 10:18:42 AM (11 years ago)
Author:
Krejzi <krejzi@…>
Branches:
7.5-systemd, 7.6-systemd, 7.7-systemd, 7.8-systemd, 7.9-systemd
Children:
c46ee65
Parents:
00c1c08
Message:

Sync development and systemd branches.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10276 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
chapter06
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter06/createfiles.xml

    r00c1c08 rcc519cf  
    4747ln -sv bash /bin/sh</userinput></screen>
    4848
    49   <para>A proper Linux system maintains a list of the mounted file systems in
    50   the file <filename>/etc/mtab</filename>. Systemd requires it to be a
    51   symbolic link to  <filename>/proc/self/mounts</filename>:</para>
     49  <para>Historically, Linux maintains a list of the mounted file systems in the
     50  file <filename>/etc/mtab</filename>. Modern kernels maintain this list
     51  internally and exposes it to the user via the <filename
     52  class="directory">/proc</filename> filesystem. To satisfy utilities that
     53  expect the presence of <filename>/etc/mtab</filename>, create the following
     54  symbolic link:</para>
    5255
    5356<screen><userinput>ln -s /proc/self/mounts /etc/mtab</userinput></screen>
     
    9396adm:x:16:
    9497messagebus:x:18:
     98systemd-journal:x:23:
    9599mail:x:34:
    96100nogroup:x:99:</literal>
  • chapter06/flex.xml

    r00c1c08 rcc519cf  
    4848    <para>Prepare Flex for compilation:</para>
    4949
    50 <screen><userinput remap="configure">./configure --prefix=/usr             \
     50<screen><userinput remap="configure">./configure --prefix=/usr \
    5151            --docdir=/usr/share/doc/flex-&flex-version;</userinput></screen>
    5252
  • chapter06/gawk.xml

    r00c1c08 rcc519cf  
    6969    <segmentedlist>
    7070      <segtitle>Installed programs</segtitle>
     71      <segtitle>Installed libraries</segtitle>
    7172      <segtitle>Installed directories</segtitle>
    7273
    7374      <seglistitem>
    74         <seg>awk (link to gawk), dgawk, gawk, gawk-&gawk-version;, grcat, igawk,
    75         pgawk, pgawk-&gawk-version;, and pwcat</seg>
    76         <seg>/usr/lib/awk, /usr/share/awk</seg>
     75        <seg>awk (link to gawk), gawk, gawk-&gawk-version;, and igawk</seg>
     76        <seg>filefuncs.so, fnmatch.so, fork.so, inplace.so, ordchr.so,
     77        readdir.so, readfile.so, revoutput.so, revtwoway.so, rwarray.so,
     78        testext.so, and time.so</seg>
     79        <seg>/usr/lib/{,g}awk, /usr/share/awk</seg>
    7780      </seglistitem>
    7881    </segmentedlist>
     
    8992          <indexterm zone="ch-system-gawk awk">
    9093            <primary sortas="b-awk">awk</primary>
    91           </indexterm>
    92         </listitem>
    93       </varlistentry>
    94 
    95       <varlistentry id="dgawk">
    96         <term><command>dgawk</command></term>
    97         <listitem>
    98           <para>An awk debugger</para>
    99           <indexterm zone="ch-system-gawk dgawk">
    100             <primary sortas="b-dgawk">dgawk</primary>
    10194          </indexterm>
    10295        </listitem>
     
    124117      </varlistentry>
    125118
    126       <varlistentry id="grcat">
    127         <term><command>grcat</command></term>
    128         <listitem>
    129           <para>Dumps the group database <filename>/etc/group</filename></para>
    130           <indexterm zone="ch-system-gawk grcat">
    131             <primary sortas="b-grcat">grcat</primary>
    132           </indexterm>
    133         </listitem>
    134       </varlistentry>
    135 
    136119      <varlistentry id="igawk">
    137120        <term><command>igawk</command></term>
     
    144127      </varlistentry>
    145128
    146       <varlistentry id="pgawk">
    147         <term><command>pgawk</command></term>
    148         <listitem>
    149           <para>The profiling version of <command>gawk</command></para>
    150           <indexterm zone="ch-system-gawk pgawk">
    151             <primary sortas="b-pgawk">pgawk</primary>
    152           </indexterm>
    153         </listitem>
    154       </varlistentry>
    155 
    156       <varlistentry id="pgawk-version">
    157         <term><command>pgawk-&gawk-version;</command></term>
    158         <listitem>
    159           <para>Hard link to <command>pgawk</command></para>
    160           <indexterm zone="ch-system-gawk pgawk-version">
    161             <primary sortas="b-pgawk-&gawk-version;">pgawk-&gawk-version;</primary>
    162           </indexterm>
    163         </listitem>
    164       </varlistentry>
    165 
    166       <varlistentry id="pwcat">
    167         <term><command>pwcat</command></term>
    168         <listitem>
    169           <para>Dumps the password database <filename>/etc/passwd</filename></para>
    170           <indexterm zone="ch-system-gawk pwcat">
    171             <primary sortas="b-pwcat">pwcat</primary>
    172           </indexterm>
    173         </listitem>
    174       </varlistentry>
    175 
    176129    </variablelist>
    177130
Note: See TracChangeset for help on using the changeset viewer.