0

I tried to install and use a simples FTP server on my Pi.

I fallow this tutorial, but not success.

When I type service vsftpd restart it returns for me

     Stopping FTP server: No /usr/sbin/vsftpd found running; none killed.
      vsftpd.
     /etc/vsftpd.conf: listen disabled - service will not start 

Somebody know a tutorial for I create a simples FTP server. (can be an advanced too)

Thanks in advanced.

Vitor Mazuco
  • 147
  • 1
  • 2
  • 7

1 Answers1

1

This thread may be interesting to you: https://www.raspberrypi.org/forums/viewtopic.php?f=36&t=35661

It says: sftp is already available on your Pi because it is part of the ssh daemon. To get filezilla to connect, change the protocol from ftp to sftp and/or change port number to 22.

If you really do need an ftp server, try this: http://www.pibeginners.com/ftp-server/ It says you simply need to run sudo apt-get install proftpd and choose standalone mode.

For configuring it to allow anonymous ftp, take a look here: http://www.proftpd.org/docs/howto/ConfigFile.html In summary - you need to add an <anonymous> section to the /etc/proftpd/proftpd.conf file.

lwr20
  • 312
  • 2
  • 10