source: content/web/vsftpd.xml@ 1586494

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 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 1586494 was 1586494, checked in by Randy McMurchy <randy@…>, 19 years ago

Spelling, grammar, tag and excessive whitespace corrections to various package instructions

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

  • Property mode set to 100644
File size: 5.4 KB
RevLine 
[d7c8734]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[12a352e2]7 <!ENTITY vsftpd-download-http " ">
[d7c8734]8 <!ENTITY vsftpd-download-ftp "ftp://vsftpd.beasts.org/users/cevans/vsftpd-&vsftpd-version;.tar.gz">
9 <!ENTITY vsftpd-size "148 KB">
10 <!ENTITY vsftpd-buildsize "492 KB">
[1586494]11 <!ENTITY vsftpd-time "0.01 SBU">
[d7c8734]12]>
13
14<sect1 id="vsftpd" xreflabel="vsFTPD-&vsftpd-version;">
[a0f03b0]15<sect1info>
[5cd0959d]16<othername>$LastChangedBy$</othername>
17<date>$Date$</date>
[a0f03b0]18</sect1info>
[d7c8734]19<?dbhtml filename="vsftpd.html"?>
[1586494]20<title><application>vs<acronym>FTP</acronym>D</application>-&vsftpd-version;</title>
[d7c8734]21
22<sect2>
[1586494]23<title>Introduction to
24<application>vs<acronym>FTP</acronym>D</application></title>
[d7c8734]25
[1586494]26<para>The <application>vs<acronym>FTP</acronym>D</application> package
27contains a very secure and very small <acronym>FTP</acronym> daemon. This is
28useful for serving files over a network.</para>
[d7c8734]29
30<sect3><title>Package information</title>
31<itemizedlist spacing='compact'>
[1586494]32<listitem><para>Download (HTTP):
33<ulink url="&vsftpd-download-http;"/></para></listitem>
34<listitem><para>Download (FTP):
35<ulink url="&vsftpd-download-ftp;"/></para></listitem>
[d7c8734]36<listitem><para>Download size: &vsftpd-size;</para></listitem>
[1586494]37<listitem><para>Estimated disk space required:
38&vsftpd-buildsize;</para></listitem>
39<listitem><para>Estimated build time:
40&vsftpd-time;</para></listitem></itemizedlist>
[d7c8734]41</sect3>
42
43<sect3><title><application>vsFTPD</application> dependencies</title>
44<sect4><title>Optional</title>
45<para><xref linkend="Linux_PAM"/>,
46<xref linkend="openssl"/>, and
[1586494]47<xref linkend="tcpwrappers"/></para>
48</sect4>
[d7c8734]49</sect3>
50
51</sect2>
52
53<sect2>
54<title>Installation of <application>vsFTPD</application></title>
55
[1586494]56<para>For security reasons, running
57<application>vs<acronym>FTP</acronym>D</application> as an unprivileged user
58and group is encouraged. Also, a user to map anonymous users to should be
59created.</para>
[d7c8734]60
[3f037be]61<screen><userinput><command>install -d -m 0755 /var/ftp/empty &amp;&amp;
62install -d -m 0755 /home/ftp &amp;&amp;
[d7c8734]63groupadd vsftpd &amp;&amp;
[1586494]64useradd -d /dev/null -c "vsFTPD User" -g vsftpd -s /bin/false vsftpd &amp;&amp;
[d7c8734]65groupadd ftp &amp;&amp;
66useradd -c anonymous_user -d /home/ftp -g ftp -s /bin/false ftp</command>
67</userinput></screen>
68
[1586494]69<para>Install <application>vs<acronym>FTP</acronym>D</application> by running
70the following commands:</para>
[d7c8734]71
72<screen><userinput><command>make &amp;&amp;
73install -m 755 vsftpd /usr/sbin/vsftpd &amp;&amp;
[e4fef732]74install -m 644 vsftpd.8 /usr/share/man/man8 &amp;&amp;
75install -m 644 vsftpd.conf.5 /usr/share/man/man5 &amp;&amp;
[1586494]76install -m 644 vsftpd.conf /etc</command></userinput></screen>
[d7c8734]77
78</sect2>
79
80<sect2>
81<title>Command explanations</title>
82
[3f037be]83<para><parameter>install -d [...]</parameter>: This creates the directory that
[1586494]84anonymous users will use (<filename class='directory'>/home/ftp</filename>)
85and the directory the daemon will chroot into
86(<filename class='directory'>/var/ftp/empty</filename>).</para>
[d7c8734]87
88<note><para><filename class="directory">/home/ftp</filename> should not be
89owned by the user vsftpd, or the user ftp.</para></note>
90
91<para><parameter>echo "#define VSF_BUILD_TCPWRAPPERS" >>builddefs.h</parameter>:
[1586494]92Use this prior to <command>make</command> to add support for
93<application>tcpwrappers</application>.</para>
[d7c8734]94
95<para><parameter>echo "#define VSF_BUILD_SSL" >>builddefs.h</parameter>:
[1586494]96Use this prior to <command>make</command> to add support for
97<acronym>SSL</acronym>.</para>
[d7c8734]98
99<para><parameter>install -m [...]</parameter>:
[1586494]100The <filename>Makefile</filename> hardwires
101<filename class='directory'>/usr/local</filename> (if it exists). These
102commands install the files in
103<filename class='directory'>/usr</filename>.</para>
[d7c8734]104
105</sect2>
106
107<sect2>
[1586494]108<title>Configuring <application>vs<acronym>FTP</acronym>D</application></title>
[d7c8734]109
110<sect3><title>vsftpd init.d script</title>
111<para>Install the <filename>/etc/rc.d/init.d/vsftpd</filename>
[1586494]112init script included in the
113<xref linkend="intro-important-bootscripts"/> package.</para>
114
[d7c8734]115<screen><userinput><command>make install-vsftpd</command></userinput></screen>
116
117</sect3>
118
119<sect3><title>Config files</title>
[1586494]120<para><filename>/etc/vsftpd.conf</filename></para>
121</sect3>
[d7c8734]122
[1586494]123<sect3><title>Configuration information</title>
124<para><application>vs<acronym>FTP</acronym>D</application> comes with a basic
125anonymous-only configuration file that was copied to
126<filename class='directory'>/etc</filename> above. This file should be modified
127because it is now recommended to run <command>vsftpd</command> in standalone
128mode as opposed to <command>inetd</command>/<command>xinetd</command> mode.
129Also, you should specify the privilege separation user created above. Finally,
130you should specify the <command>chroot</command> directory.
131<command>man vsftpd.conf</command> will give you all the details.</para>
[d7c8734]132
133<screen><userinput><command>cat &gt;&gt; /etc/vsftpd.conf &lt;&lt; "EOF"</command>
[e4fef732]134background=YES
[d7c8734]135listen=YES
136nopriv_user=vsftpd
137secure_chroot_dir=/var/ftp/empty
[1586494]138<command>EOF</command></userinput></screen>
139</sect3>
[d7c8734]140
141</sect2>
142
143<sect2>
144<title>Contents</title>
145
[1586494]146<para>The <application>vs<acronym>FTP</acronym>D</application> package contains
[d7c8734]147<command>vsftpd</command>.</para>
148
149</sect2>
150
151<sect2><title>Description</title>
152
153<sect3><title>vsftpd</title>
[1586494]154<para><command>vsftpd</command> is the <acronym>FTP</acronym>
155daemon.</para></sect3>
[d7c8734]156
157</sect2>
158
159</sect1>
160
Note: See TracBrowser for help on using the repository browser.