Showing posts with label FTP. Show all posts
Showing posts with label FTP. Show all posts

Tuesday, June 10, 2014

Install filezilla on Ubuntu, to connect Pi using FTP

FileZilla is a FTP solution. Both a client and a server are available. FileZilla is open source software distributed free of charge under the terms of the GNU General Public License.


To install filezilla on Ubuntu, enter command:
sudo apt-get install filezilla

To install vsftpd on Raspberry Pi
read http://goo.gl/PueSlj

Tuesday, December 3, 2013

Install FTP Client (FileZilla Client) on Windows 8

FileZilla Client is a open source FTP client for various platforms, distributed free of charge under the terms of the GNU General Public License.



Note: There are some other bundle software will be installed...! (I don't know is it various or not...!?)

Related:
Install FTP server, vsftpd, on Raspberry Pi

Install vsftpd on Raspberry Pi

To install vsftpd on Raspberry Pi, enter the command:
$ sudo apt-get install vsftpd

Install vsftpd on Raspberry Pi
Install vsftpd on Raspberry Pi
Config ftp by editting /etc/vsftpd.conf, enter the ommand:
sudo nano /etc/vsftpd.conf

# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO

# Uncomment this to allow local users to log in.
local_enable=YES

# Uncomment this to enable any form of FTP write command.
write_enable=YES

And add the line of force_dot_files. If activated, files and directories starting with . will be shown in directory listings even if the "a" flag was not used by the client. This override excludes the "." and ".." entries.
force_dot_files=YES

Refer https://security.appspot.com/vsftpd/vsftpd_conf.html for various options in /etc/vsftpd.conf.

Save and Exit.

edit /etc/vsftpd.conf
edit /etc/vsftpd.conf
Restart vsftpd service to make the new setting take effect.
sudo service vsftpd restart

Next:
Install FTP Client (FileZilla Client) on Windows 8