Posts Tagged ‘vsftpd’
Setting Up Your Ubuntu 8.10 VPS with VPS Ville Pt. 2 FTP, Users, Mail
Friday, February 27, 2009 1:12 No Comments8. Setting up FTP
To start install the FTP Server:
apt-get -y install vsftpd
Now all we have to do is configure it:
nano /etc/vsftpd.conf
We don’t want people logging in anonymously so change “anonymous_enable=YES” to:
anonymous_enable=NO
You also want to uncomment [remove the # in front] these lines:
#local_enable=YES
#write_enable=YES
Ctrl + O, then Enter to save. Ctrl + X to exit. Now restart [...]





