💾 Archived View for yasendfile.org › TipTricks › vsftpd-install.gmi captured on 2023-03-20 at 17:41:28. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-07-16)

-=-=-=-=-=-=-

Vsftpd - Very Secure FTP Server install on Linux Artix Runit

Written by Wim Stockman - on 30 April 2022.

Installation on Linux Artix

	$ pacman -S vsftpd-runit

to enable it on startup

	$ sudo ln -s /etc/runit/sv/svftpd /run/runit/service/

Configuration

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 :-)