Created
August 11, 2015 13:40
-
-
Save breenie/ab03103c98f63465518d to your computer and use it in GitHub Desktop.
FTP server on ubuntu 14.04 x64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env bash | |
| sudo apt-get update | |
| apt-get install vsftpd | |
| # Modify /etc/vsftp.conf | |
| useradd -m ldsc -s /usr/sbin/nologin | |
| passwd ldsc | |
| echo "/usr/sbin/nologin" >> /etc/shells | |
| service vsftpd restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment