To install vsftpd on Raspberry Pi, enter the command:
$
sudo apt-get install vsftpd
 |
| Install vsftpd on Raspberry Pi |
Config ftp by editting /etc/vsftpd.conf, enter the ommand:
$
sudo nano /etc/vsftpd.conf
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO
# Uncomment this to allow local users to log in.
local_enable=YES
# Uncomment this to enable any form of FTP write command.
write_enable=YES
And add the line of force_dot_files. If activated, files and directories starting with . will be shown in directory listings even if the "a" flag was not used by the client. This override excludes the "." and ".." entries.
force_dot_files=YES
Refer
https://security.appspot.com/vsftpd/vsftpd_conf.html for various options in /etc/vsftpd.conf.
Save and Exit.
 |
| edit /etc/vsftpd.conf |
Restart vsftpd service to make the new setting take effect.
$
sudo service vsftpd restart
Next:
-
Install FTP Client (FileZilla Client) on Windows 8