564 B
564 B
VsFTPd with System Users
-
Install
vsftpd
apt-get install vsftpd
-
Make some configurations
sed -i "s/anonymous_enable=YES/anonymous_enable=NO/" /etc/vsftpd.conf sed -i "s/#local_enable=YES/local_enable=YES/" /etc/vsftpd.conf sed -i "s/#write_enable=YES/write_enable=YES" /etc/vsftpd.conf sed -i "s/#chroot_local_user=YES/chroot_local_user=YES/" /etc/vsftpd.conf echo '/bin/false' >> /etc/shells
-
Apply changes
/etc/init.d/vsftpd restart