Login to your Linux shell menu as root
1 2 | [root@locahost]# apt-get install vsftpd [root@locahost]# vim /etc/vsftpd.conf |
At VIM, 1st comment out anonymous_enable by adding a # sign at the beginning of the line
# anonymous_enable=YES
2nd remove comment at local enable by removing the # sign
local_enable=YES
1 | [root@locahost]# /etc/init.d/vsftpd restart |