In this tutorial I will show you how to install an FTP Server (vsftpd package) on Ubuntu Server.
Code used during this tutorial:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# FTP Server (vsftpd) Install on Ubuntu Server vagrant ssh sudo apt-get update # Install vsftpd # Very Secure FTP Daemon # Is an FTP server for Unix-like systems, including Linux # Is the default FTP server in the Ubuntu, CentOS, Fedora, NimbleX, Slackware and RHEL Linux distributions sudo apt-get install vsftpd # Check if the process is running ps aux | grep ftp # Man page man vsftpd man vsftpd.conf # Useful links https://help.ubuntu.com/lts/serverguide/ftp-server.html http://vsftpd.beasts.org/vsftpd_conf.html http://manpages.ubuntu.com/manpages/trusty/en/man5/vsftpd.conf.5.html https://www.youtube.com/watch?v=o-W_mDGX1bY https://en.wikipedia.org/wiki/Vsftpd https://en.wikipedia.org/wiki/List_of_FTP_server_software https://github.com/liviubalan/liviubalan.com-vagrant-ubuntu |
Useful links:
https://help.ubuntu.com/lts/serverguide/ftp-server.html
http://vsftpd.beasts.org/vsftpd_conf.html
http://manpages.ubuntu.com/manpages/trusty/en/man5/vsftpd.conf.5.html
https://www.youtube.com/watch?v=o-W_mDGX1bY
https://en.wikipedia.org/wiki/Vsftpd
https://en.wikipedia.org/wiki/List_of_FTP_server_software
https://github.com/liviubalan/liviubalan.com-vagrant-ubuntu