Changeset d17b13d for general


Ignore:
Timestamp:
10/26/2013 04:25:50 PM (10 years ago)
Author:
Igor Živković <igor@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 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, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
2b4d97f
Parents:
afa551a
Message:

update to autofs-5.0.8

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/sysutils/autofs.xml

    rafa551a rd17b13d  
    44  <!ENTITY % general-entities SYSTEM "../../general.ent">
    55  %general-entities;
    6   <!ENTITY autofs-patch-dir     "http://ftp.kernel.org/pub/linux/daemons/autofs/v5/patches-5.0.7">
     6
    77  <!ENTITY autofs-download-http "http://ftp.kernel.org/pub/linux/daemons/autofs/v5/autofs-&autofs-version;.tar.xz">
    88  <!ENTITY autofs-download-ftp  "ftp://ftp.kernel.org/pub/linux/daemons/autofs/v5/autofs-&autofs-version;.tar.xz">
    9   <!ENTITY autofs-md5sum        "7aa414dd1d07e263795eced1992e8645">
    10   <!ENTITY autofs-size          "248 KB">
    11   <!ENTITY autofs-buildsize     "8.4 MB">
     9  <!ENTITY autofs-md5sum        "4ed5271598fb1a76475364a4879c7578">
     10  <!ENTITY autofs-size          "249 KB">
     11  <!ENTITY autofs-buildsize     "7.6 MB">
    1212  <!ENTITY autofs-time          "0.1 SBU">
    1313]>
     
    3030    <title>Introduction to Autofs</title>
    3131
    32     <para>The <application>Autofs</application> package contains userspace
    33     tools that work with the kernel to mount and un-mount removable file
    34     systems. The primary use is to mount external network file systems like
    35     NFS (see <xref linkend="nfs-utils"/>) or Samba (see <xref linkend="samba"/>)
    36     on demand.</para>
    37 
    38     <para>It may also be useful for allowing users to mount floppies, cdroms and
    39     other removable storage devices without requiring the system
    40     administrator to mount the devices.</para>
     32    <para>
     33      <application>Autofs</application> controls the operation of the automount
     34      daemons. The automount daemons automatically mount filesystems when they
     35      are accessed and unmount them after a period of inactivity. This is done
     36      based on a set of pre-configured maps.
     37    </para>
    4138
    4239    &lfs74_checked;
     
    6360      </listitem>
    6461    </itemizedlist>
    65 <!--
    66     <bridgehead renderas="sect3">Additional Downloads</bridgehead>
    67 
    68     <para>Recommended Patches: There are frequent patches issued for
    69     <application>autofs</application>. One method you can use to get the
    70     current patches requires first installing the <xref linkend="wget"/>
    71     package. After ensuring the <command>wget</command> command is installed
    72     in a directory identified in the <envar>PATH</envar> variable, start in
    73     the same directory as the main tar file and issue the following
    74     commands:</para>
    75 
    76 <screen><userinput>wget &autofs-patch-dir;/patch_order-&autofs-version; &amp;&amp;
    77 sed 's;autofs;&autofs-patch-dir;/autofs;' \
    78     patch_order-&autofs-version; | grep -v ^# &gt; wget-list &amp;&amp;
    79 wget -i wget-list</userinput></screen>
    80 -->
     62
    8163    <bridgehead renderas="sect3">Autofs Dependencies</bridgehead>
    8264
    83     <bridgehead renderas="sect4">Required</bridgehead>
    84     <para role="required">
    85       <xref linkend="openldap"/>,
    86       <xref linkend="cyrus-sasl"/>, and
    87       <xref linkend="mitkrb"/></para>
     65    <bridgehead renderas="sect4">Optional</bridgehead>
     66    <para role="optional">
     67      <xref linkend="libtirpc"/>,
     68      <xref linkend="nfs-utils"/>,
     69      <xref linkend="libxml2"/>,
     70      <xref linkend="mitkrb"/>,
     71      <xref linkend="openldap"/> (client only), and
     72      <xref linkend="cyrus-sasl"/>
     73    </para>
    8874
    8975    <para condition="html" role="usernotes">User Notes:
     
    9985    </indexterm>
    10086
    101     <para>Verify that kernel support has been compiled in or built as
    102     modules in the following areas:</para>
    103 
    104 <screen><literal>File systems &rArr;
    105     Kernel automounter version 4 support  Y or M
    106     Network File Systems &rArr;
    107         NFS client support   Y or M (optional)
    108         CIFS support         Y or M (optional)</literal></screen>
     87    <para>
     88      Verify that automounter kernel support has been enabled:
     89    </para>
     90
     91<screen><literal>File systems ---&gt;
     92  Kernel automounter version 4 support (also supports v3): Y or M</literal></screen>
     93
     94    <para>
     95      Optionally, enable the following options in the kernel configuration:
     96    </para>
     97
     98<screen><literal>File systems  ---&gt;
     99  Network File Systems  ---&gt;
     100    NFS client support: Y or M
     101    CIFS support (advanced network filesystem, SMBFS successor): Y or M</literal></screen>
    109102
    110103    <para>Recompile and install the new kernel, if necessary.</para>
     
    118111    <para>Install <application>Autofs</application> by running the following
    119112    commands:</para>
    120 <!--
    121 <screen><userinput>for f in `cat ../patch_order-&autofs-version;`; do
    122   patch -Np1 -i ../$f
    123 done &amp;&amp;
    124 -->
     113
    125114<screen><userinput>./configure --prefix=/ --mandir=/usr/share/man &amp;&amp;
    126115make</userinput></screen>
     
    133122
    134123  </sect2>
    135 <!--
     124
    136125  <sect2 role="commands">
    137126    <title>Command Explanations</title>
    138127
    139     <para><command>for f in `cat ../patch_order-&autofs-version;`; do
    140     patch -Np1 -i ../$f;  done</command>: This command applies all the
    141     patches downloaded earlier in the correct order.</para>
    142 
    143     <para><command>ln -sf  ../init.d/autofs
    144     /etc/rc.d/rcsysinit.d/S52autofs</command>: This command sets the
    145     link to properly start autofs upon boot.</para>
    146 
    147   </sect2>
    148 -->
     128    <para>
     129      <option>--with-libtirpc</option>: This switch enables libtirpc support if
     130      available.
     131    </para>
     132
     133  </sect2>
     134
    149135  <sect2 role="configuration">
    150136    <title>Configuring Autofs</title>
Note: See TracChangeset for help on using the changeset viewer.