vsftpd
From Gentoo Wiki
vsftpd (Very Secure FTP Daemon) is a major FTP server.
Contents |
Installation
Install net-ftp/vsftpd:
root # emerge --ask vsftpdConfiguration
Anonymous access
root # mkdir /home/ftpFile/etc/vsftpd/vsftpd.conf
listen=YES local_enable=NO anonymous_enable=YES write_enable=NO anon_root=/home/ftp
OpenRC
root # rc-update add vsftpd default
root # /etc/init.d/vsftpd startsystemd
root # systemctl enable vsftpd
root # systemctl start vsftpd