mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-27 09:42:12 +08:00
8f15c283b3
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1822 af4574ff-66df-0310-9fd7-8a98e5e911e0
21 lines
712 B
XML
21 lines
712 B
XML
<sect2>
|
|
<title>Installation of <application>ProFTPD</application></title>
|
|
|
|
<para>For security reasons, running <application>ProFTPD</application>
|
|
as an unprivileged user and group is encouraged.</para>
|
|
|
|
<screen><userinput><command>groupadd proftpd &&
|
|
useradd -c proftpd -d /home/ftp -g proftpd -s /bin/false proftpd</command>
|
|
</userinput></screen>
|
|
|
|
<para>Install <application>ProFTPD</application> by running the following commands:</para>
|
|
|
|
<screen><userinput><command>install_user=proftpd install_group=proftpd \
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var/run &&
|
|
make &&
|
|
make install </command></userinput></screen>
|
|
|
|
</sect2>
|
|
|