sudo raspi-config sudo apt-get update sudo apt-get upgrade sudo apt-get install vsftpd sudo nano /etc/vsftpd.conf anonymous_enable=NO local_enable=YES write_enable=YES local_umask=022 chroot_local_user=YES user_sub_token=$USER local_root=/home/$USER/FTP Ctrl-x, Ctrl-y mkdir /home//FTP mkdir /home//FTP/files chmod a-w /home//FTP sudo service vsftpd restart Installation First of all you need to install the server package. You can use SSH or opening the terminal. sudo apt-get install proftpd While installing it will ask how ProFTP should be started. We choose “standalone” (see image). Basically, here it would be already done, but with this configuration each user has access to his own home directory (for example /home/pi). Therefore we create a new virtual user with access to a specified path. For this purpose we first change once the directory. cd /etc/proftpd/ Here, the virtual user will be created. In the following example I create the user “tutorials“ with home directory /var/www/. You can specify whatever directory you want (also the absolute root directory or a directory on a mounted external hdd). sudo ftpasswd --passwd --name tutorials --gid 33 --uid 33 --home /var/www/ --shell /bin/false Now just enter the password and confirm. If the user’s password should be changed at a later date, simply switch back to this directory ( /etc/proftpd/ ) and run the same command again. To further unlock the virtual users, we have to edit the configuration file: sudo nano /etc/proftpd/proftpd.conf Following code has to be inserted at the end of that file: DefaultRoot ~ AuthOrder mod_auth_file.c mod_auth_unix.c AuthUserFile /etc/proftpd/ftpd.passwd AuthPAM off RequireValidShell off By pressing CTRL + O and CTRL + X and we save and exit the editor. Test Last but not least, we restart the server and try it out. sudo /etc/init.d/proftpd restart No you can test it: Open your Browser and type in ftp://raspberrypi/ (If you have changed the host name of your Pi you have to take that. If it still doesn’t work insert the local IP address of your Raspberry Pi). For uploading files I strongly recommend the tool FileZilla. Maybe you still can’t log in because rights are missing. The following commands will help to fix this problem. chmod g+s /var/www chmod 775 /var/www (If another directory has been assigned to the user, it must be adapted accordingly)