ProFTPd on RPI
A simple FTP server for RPI.
Installing ProFTPd
Installing ProFTPd
sudo apt-get install proftpd
Make few configuration changessudo vi /etc/proftpd/proftpd.conf
DefaultRoot ~
AuthOrder mod_auth_file.c mod_auth_unix.c
AuthPAM off
RequireValidShell off
Restart ProFTPd sudo /etc/init.d/proftpd restart
Establish
a FTP connection to RPI with the existing credentials of RPI. With these changes we can download files from RPI.
Comments
Post a Comment