posted Jan 27, 2010 4:48 AM by J iNestdia
[
updated Dec 9, 2010 10:05 PM
]
vsftpd is a GPL licensed FTP server and the default FTP server in some Linux distributions. It is secure and extremely fast. It is stable.
$sudo apt-get install vsftpd
This will complete the installation.
I have made the modification of vsftpd configuration file as follows;
$sudo gedit /etc/vsftpd.conf
change [anonymous_enable=YES] to [anonymous_enable=NO]
uncomment
#local_enable=YES
#write_enable=YES
then,
$sudo /etc/init.d/vsftpd restart
That’s all.
|
|