Network Services

Saturday, February 16, 2013

How to Install Vsftpd "FTP SERVER" for Ubuntu

How to Install Vsftpd "FTP SERVER" for Ubuntu

Open command line 

sudo apt-get install vsftpd

 nano /etc/vsftpd.conf

# line 23: change( disable anonymous )
anonymous_enable=NO
# line 26: uncomment
local_enable=YES
# line 29: uncomment
write_enable=YES
# line 97,98: uncomment ( allow ascii mode transfer )
ascii_upload_enable=YES
ascii_download_enable=YES
# line 120: uncomment ( enable chroot )
chroot_local_user=YES
# line 121: uncomment ( enable chroot list )
chroot_list_enable=YES
# line 123: uncomment ( enable chroot list )
chroot_list_file=/etc/vsftpd.chroot_list
# line 129: uncomment
ls_recurse_enable=YES
# add at the last line
# specify root directory ( if don't specify, users' home directory become FTP home directory)
local_root=public_html
# use localtime
use_localtime=YES
root@www:~# vi /etc/vsftpd.chroot_list
# add users you allow to move over their home directory
pangolin 

Ctrl+x Enter  "y"

Restart "vsftpd"

service vsftpd restart

0 comments:

Post a Comment