Skip to content

Instantly share code, notes, and snippets.

@codebymark
Created August 23, 2019 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codebymark/112aef5c3c49d1523b211db358e784b4 to your computer and use it in GitHub Desktop.
Save codebymark/112aef5c3c49d1523b211db358e784b4 to your computer and use it in GitHub Desktop.
# VSFTPD installation for ubuntu
#
sudo su
apt-get update
apt-get install vsftpd
useradd -m ftpusr
# add your groups where nessesary
service vsftpd restart
# edit the /etc/vsftpd.conf
# write_enable=YES
# append
# pasv_enable=Yes
# pasv_min_port=40000
# pasv_max_port=40100
# pasv_addr_resolve=YES
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment