Raspberry Pi et Arch Linux – Un serveur FTP avec vsFTPd
It is often useful to have to send quickly files on our server. For this nothing more simple than FTP.
- Install vsFTPd
Pacman-s vsftpd
- As there is only the user root, Let's add a user specific to send our data
adduser pi
- Change the configuration of vsftpd to not allow anonymous connections (you see, I have not needed), allow local connections and writing during transfers
anonymous_enable = NO local_enable = YES write_enable = YES
- Now remains to activate the service
systemctl enable vsftpd
- Then start
systemctl start vsftpd
You can now connect to your server with an FTP client.