Tutorial Install FTP Server
First install the proftpd app with the command "apt-get install proftpd", then hit enter. Then you will see 2 options for running applications proftpd in inetd or standalone mode. Inetd and standalone difference is when an ftp server accessed only occasionally or accessing a bit with the reasons for saving resources / memory. If an ftp server accessible continuously and many users accessing select standalone mode. After the installation is complete, check whether proftpd is running or not with the command "nmap localhost". If nmap has not been installed, install "apt-get install nmap" first. If port 21 exists, then the ftp server is already running. Then, test the ftp server from the client, use the command "ftp 10.252.108.44". Then enter the user name on the server, do not forget to enter the password as well. In this case i use user "student". Once logged in on the ftp server, type the command "ls" to fi...