美文网首页我用 Linux程序员
Linux ftp文件传输服务器

Linux ftp文件传输服务器

作者: SpiffyEight77 | 来源:发表于2017-09-08 21:25 被阅读94次
FTP

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
pics

2.Restart the vsftpd

$ sudo service vsftpd restart
pics

3.Set up your own account and password.

$ sudo passwd ftp
pics

4.Edit the vsftpd.conf

$ sudo gedit /etc/vsftpd.conf
  1. anonymous_enable=NO
  2. local_enable=YES
  3. write_enable=YES
  4. anon_mkdir_write_enable=YES
  5. anon_upload_enable=YES

5. Input ftp://localhost in your browser to visit your ftp.

pics

6.Finally Install the FileZilla client on other Windows PCs which want to visit this FTP.

Thank you so much.

相关文章

网友评论

    本文标题:Linux ftp文件传输服务器

    本文链接:https://www.haomeiwen.com/subject/mnrwjxtx.html