Changeset 32ccdf34


Ignore:
Timestamp:
04/27/2006 04:28:51 AM (18 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.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, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
0aeb696
Parents:
a760926
Message:

Update to vsftpd-2.0.4

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    ra760926 r32ccdf34  
    1 <!ENTITY day          "26">                   <!-- Always 2 digits -->
     1<!ENTITY day          "27">                   <!-- Always 2 digits -->
    22<!ENTITY month        "04">                   <!-- Always 2 digits -->
    33<!ENTITY year         "2006">
     
    319319<!ENTITY proftpd-version              "1.2.10">
    320320<!-- samba3 (chapter 18) -->
    321 <!ENTITY vsftpd-version               "2.0.3">
     321<!ENTITY vsftpd-version               "2.0.4">
    322322<!ENTITY xinetd-version               "2.3.14">
    323323
  • introduction/welcome/changelog.xml

    ra760926 r32ccdf34  
    4141
    4242-->
     43    <listitem>
     44      <para>April 26th, 2006</para>
     45      <itemizedlist>
     46        <listitem>
     47          <para>[bdubbs] - Updated to vsftpd-2.0.4</para>
     48        </listitem>
     49      </itemizedlist>
     50    </listitem>
    4351
    4452    <listitem>
  • postlfs/editors/emacs.xml

    ra760926 r32ccdf34  
    9191  </sect2>
    9292
     93  <sect2 role="commands">
     94    <title>Command Explanations</title>
     95
     96    <para><option>--libexecdir=/usr/lib</option>: Place library
     97    executables in a Filesystem Hierarchy Standard (FHS) location.</para>
     98
     99  </sect2>
     100
    93101  <sect2 role="content">
    94102    <title>Contents</title>
  • server/major/vsftpd.xml

    ra760926 r32ccdf34  
    77  <!ENTITY vsftpd-download-http " ">
    88  <!ENTITY vsftpd-download-ftp  "ftp://vsftpd.beasts.org/users/cevans/vsftpd-&vsftpd-version;.tar.gz">
    9   <!ENTITY vsftpd-md5sum        "74936cbd8e8251deb1cd99c5fb18b6f8">
    10   <!ENTITY vsftpd-size          "150 KB">
     9  <!ENTITY vsftpd-md5sum        "c0bf8c7b8e15ab15827172786fc56115">
     10  <!ENTITY vsftpd-size          "152 KB">
    1111  <!ENTITY vsftpd-buildsize     "1.4 MB">
    1212  <!ENTITY vsftpd-time          "less than 0.1 SBU">
    1313]>
    1414
    15 <sect1 id="vsftpd" xreflabel="vsFTPD-&vsftpd-version;">
     15<sect1 id="vsftpd" xreflabel="vsftpd-&vsftpd-version;">
    1616  <?dbhtml filename="vsftpd.html"?>
    1717
     
    2525  </sect1info>
    2626
    27   <title>vsFTPD-&vsftpd-version;</title>
     27  <title>vsftpd-&vsftpd-version;</title>
    2828
    2929  <indexterm zone="vsftpd">
    30     <primary sortas="a-vsFTPD">vsFTPD</primary>
     30    <primary sortas="a-vsftpd">vsftpd</primary>
    3131  </indexterm>
    3232
    3333  <sect2 role="package">
    34     <title>Introduction to vsFTPD</title>
    35 
    36     <para>The <application>vsFTPD</application> package contains a very
     34    <title>Introduction to vsftpd</title>
     35
     36    <para>The <application>vsftpd</application> package contains a very
    3737    secure and very small FTP daemon. This is useful for serving files
    3838    over a network.</para>
     
    6060    </itemizedlist>
    6161
    62     <bridgehead renderas="sect3">vsFTPD Dependencies</bridgehead>
     62    <bridgehead renderas="sect3">vsftpd Dependencies</bridgehead>
    6363
    6464    <bridgehead renderas="sect4">Optional</bridgehead>
     
    7373
    7474  <sect2 role="installation">
    75     <title>Installation of vsFTPD</title>
    76 
    77     <para>For security reasons, running <application>vsFTPD</application>
     75    <title>Installation of vsftpd</title>
     76
     77    <para>For security reasons, running <application>vsftpd</application>
    7878    as an unprivileged user and group is encouraged. Also, a user should be
    7979    created to map anonymous users. As the <systemitem
     
    8484install -v -d -m 0755 /home/ftp &amp;&amp;
    8585groupadd -g 47 vsftpd &amp;&amp;
    86 useradd -d /dev/null -c "vsFTPD User" -g vsftpd -s /bin/false \
     86useradd -d /dev/null -c "vsftpd User" -g vsftpd -s /bin/false \
    8787        -u 47 vsftpd &amp;&amp;
    8888groupadd -g 45 ftp &amp;&amp;
    8989useradd -c anonymous_user -d /home/ftp -g ftp -s /bin/false -u 45 ftp</userinput></screen>
    9090
    91     <para>Build <application>vsFTPD</application> as an unprivileged user
     91    <para>Build <application>vsftpd</application> as an unprivileged user
    9292    using the following command:</para>
    9393
     
    9595
    9696    <para>Once again, become the <systemitem class="username">root</systemitem>
    97     user and install <application>vsFTPD</application> with the following
     97    user and install <application>vsftpd</application> with the following
    9898    commands:</para>
    9999
     
    136136
    137137  <sect2 role="configuration">
    138     <title>Configuring vsFTPD</title>
     138    <title>Configuring vsftpd</title>
    139139
    140140    <sect3 id="vsftpd-config">
     
    152152      <title>Configuration Information</title>
    153153
    154       <para><application>vsFTPD</application> comes with a basic
     154      <para><application>vsftpd</application> comes with a basic
    155155      anonymous-only configuration file that was copied to
    156156      <filename class='directory'>/etc</filename> above. While still as
Note: See TracChangeset for help on using the changeset viewer.