Which FTP server should I install at Ubuntu?
VSFTP – simple and easy to configure, can be set up quickly.
Installation
sudo apt-get install vsftpd
configuration:
sudo vi /etc/vsftpd.conf
specifying the FTP directory:
listen=YES
# YES means that the service will be turned on together with the system, you can change it to NO and turn it on yourself.
anon_root=/home/your_dir/ftp_dir
server restart after config changes:
sudo /etc/init.d/vsftpd restart #stop | start