Linux ftp文件传输服务器
2017-09-08 本文已影响94人
SpiffyEight77

The fastest way to build up the FTP on the Linux
1.Input the follow shell orders.
$ sudo apt-get update
$ sudo apt-get install vsftpd

2.Restart the vsftpd
$ sudo service vsftpd restart

3.Set up your own account and password.
$ sudo passwd ftp

4.Edit the vsftpd.conf
$ sudo gedit /etc/vsftpd.conf
- anonymous_enable=NO
- local_enable=YES
- write_enable=YES
- anon_mkdir_write_enable=YES
- anon_upload_enable=YES
5. Input ftp://localhost in your browser to visit your ftp.
