Documentation FTP server
1. Installation sudo dnf install vsftpd -y sudo systemctl enable vsftpd –now I have checked that it is active: sudo systemctl status vsftpd sudo ss -tuln | grep :21 2. Configuration In the file /etc/vsftpd/vsftpd.conf I touched these options: local_enable=YES # Allow local users write_enable=YES # Allow uploading files chroot_local_user=YES # Log users to your … Read more