💾 Archived View for yasendfile.org › TipTricks › vsftpd-install.gmi captured on 2023-05-24 at 17:39:45. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-07-16)
-=-=-=-=-=-=-
Written by Wim Stockman - on 30 April 2022.
$ pacman -S vsftpd-runit
to enable it on startup
$ sudo ln -s /etc/runit/sv/svftpd /run/runit/service/
Setting it up simple no SSL just basic working with your linux user account.
This is insecure and only for maybe use on a lan or at home
Edit the configuration file
$ sudo vim /etc/vsftpd.conf
Add following:
Or Create minimal configfile adding this:
anonymous_enable=NO local_enable=YES write_enable=YES pasv_enable=YES pasv_max_port=50000 pasv_min_port=40000 dirlist_enable=YES seccomp_sandbox=NO dirmessage_enable=YES xferlog_enable=YES connect_from_port_20=YES listen=YES pam_service_name=vsftpd
That's it enjoy the melody :-)