We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need to install an FTP server:
sudo chown -R pi /var/www/ sudo apt-get install vsftpd sudo pico /etc/vsftpd.conf
Now, modify the file by making the following changes:
anonymous_enable=YES
anonymous_enable=NO
#local_enable=YES
local_enable=YES
#write_enable=YES
write_enable=YES
force_dot_files=YES
Finally, restart the FTP server:
sudo service vsftpd restart
The text was updated successfully, but these errors were encountered:
#11: README.md, add 'FTP Server' subsection
14b355e
#11: README.md, minor language change
142ebbc
No branches or pull requests
We need to install an FTP server:
Now, modify the file by making the following changes:
anonymous_enable=YES
toanonymous_enable=NO
#local_enable=YES
tolocal_enable=YES
#write_enable=YES
towrite_enable=YES
force_dot_files=YES
to the bottom of the fileFinally, restart the FTP server:
The text was updated successfully, but these errors were encountered: