SMOLNET PORTAL home about changes
+---------------------------------------------------------------------+
| Vsftpd - Very Secure FTP Server install on Linux Artix Runit        |
|	Written by Wim Stockman - on 30 April 2022.                   |
+---------------------------------------------------------------------+
1) Installation on Linux Artix
 
	$ pacman -S vsftpd-runit
 
to enable it on startup
 
	$ sudo ln -s /etc/runit/sv/svftpd /run/runit/service/
 
2) 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 config file with 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 :-)
+--------------------------------------------------+
|Suggestions? gopher@yasendfile.org		   |
+--------------------------------------------------+
Response: text/plain
Original URLgopher://thinkerwim.org/0/TipTricks/vsftpd-install.txt
Content-Typetext/plain; charset=utf-8