There are many kind of FTP server, one of them is vsftpd. Here is simple FTP server installation vsftpd on linux ubuntu.
1. Install vsftpd using apt-get
sudo apt-get install vsftpd
2. Configurafion
edit file /etc/vsftpd.conf
To enable anonymous user uncomment line:
anon_upload_enable=YES
or
To limit users to their home directories, uncomment line:
chroot_local_user=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd.chroot_list
Then restart ftp service
sudo /etc/init.d/vsftpd restart
0 comments:
Post a Comment