Difference between pages "Package:DeaDBeeF" and "Package:Vsftpd"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
(Created page with "{{Ebuild |Summary=A foobar2000-like music player |CatPkg=media-sound/deadbeef |Maintainer=Damex }} {{EbuildFooter}}")
 
(initial commit)
 
Line 1: Line 1:
{{Ebuild
{{Ebuild
|Summary=A foobar2000-like music player
|Summary=Very Secure FTP Daemon written with speed, size and security in mind.
|CatPkg=media-sound/deadbeef
|CatPkg=net-ftp/vsftpd
|Maintainer=Damex
|Maintainer=hwoarang@gentoo.org, wired@gentoo.org
}}
}}
__TOC__
'''vsftpd''' is a major FTP server.


== Installation ==
Install {{Package|net-ftp/vsftpd}}:
<console>###i##emerge vsftpd</console>
== Configuration ==
==== 64-bit Kernels ====
{{file|name=/etc/vsftpd/vsftpd.conf|desc=500 OOPS: priv_sock_get_cmd work around|body=
seccomp_sandbox=NO
}}
See https://bugzilla.redhat.com/show_bug.cgi?id=845980
==== Anonymous read access ====
{{File|name=/etc/vsftpd/vsftpd.conf|desc=|body=
listen=YES
local_enable=NO
anonymous_enable=YES
write_enable=NO
anon_root=/home/ftp
}}
==== Anonymous read/write access ====
{{fancywarning|dangerous, do not do this unless behind a firewall and kept intranet only}}
<console>###i##chown ftp /home/ftp</console>
{{File|name=/etc/vsftpd/vsftpd.conf|desc=|body=
listen=YES
local_enable=NO
anonymous_enable=YES
anon_upload_enable=YES
write_enable=YES
anon_mkdir_write_enable=YES
anon_root=/home/ftp
}}
=== Init ===
To start vsftpd immediately:
<console>###i##/etc/init.d/vsftpd start</console>
To start vsftpd at boot:
<console>###i##rc-update add vsftpd default</console>
[[Category:Server]]
{{EbuildFooter}}
{{EbuildFooter}}

Revision as of 22:01, June 28, 2014

Vsftpd

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.


vsftpd is a major FTP server.

Installation

Install net-ftp/vsftpd:

root #emerge vsftpd

Configuration

64-bit Kernels

   /etc/vsftpd/vsftpd.conf - 500 OOPS: priv_sock_get_cmd work around
seccomp_sandbox=NO

See https://bugzilla.redhat.com/show_bug.cgi?id=845980

Anonymous read access

   /etc/vsftpd/vsftpd.conf
listen=YES
local_enable=NO
anonymous_enable=YES
write_enable=NO
anon_root=/home/ftp

Anonymous read/write access

   Warning

dangerous, do not do this unless behind a firewall and kept intranet only

root #chown ftp /home/ftp
   /etc/vsftpd/vsftpd.conf
listen=YES
local_enable=NO
anonymous_enable=YES
anon_upload_enable=YES
write_enable=YES
anon_mkdir_write_enable=YES
anon_root=/home/ftp

Init

To start vsftpd immediately:

root #/etc/init.d/vsftpd start

To start vsftpd at boot:

root #rc-update add vsftpd default