Skip to content

Instantly share code, notes, and snippets.

@gelanivishal
Created December 25, 2016 03:06
Show Gist options
  • Save gelanivishal/94027a9b06095cd085f79e59552cb722 to your computer and use it in GitHub Desktop.
Save gelanivishal/94027a9b06095cd085f79e59552cb722 to your computer and use it in GitHub Desktop.
Create FTP Account Via SSH
useradd <user>
groupadd <group-name>
gpasswd -a <user> <group-name>
chgrp -R <group-name> /path/to/dir/
chmod -R g+rw /path/to/dir/
passwd <user>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment