Questions tagged [ftp]

File transfer protocol is a method of transferring data over a network. On Ubuntu, FTP may be used in both GUI (though FTP clients) and CLI (through, e.g., the sftp command) modes.

FTP (File Transfer Protocol) is a fast and well-established method for transferring files. Today, users generally use Secure FTP (SFTP) which adds encryption, since normal FTP is sent using cleartext. To get around this obvious security problem, many FTP servers that can be used to transfer files over the internet are anonymous - allowing anyone to log in with a generic name (usually "anonymous") and a sometimes a meaningless password.

Basic CLI usage example with simplified output:

$ ftp ftp.gnu.org
Connected...
Name: anonymous        #I enter anonymous to log in
ftp> ls                #list files on the server
[long list in ls -l format]
ftp> lcd playground    #I change directory on my local system
Local directory now /home/zanna/playground
ftp> get somefile.txt   #I download a file to the selected local directory
Transfer complete
ftp> bye               #I log off and exit ftp
$

Type help at the ftp> prompt for a list of supported commands.

763 questions
72
votes
7 answers

vsftpd: 530 Login incorrect

I can't get vsfptd working on Ubuntu 12.04. my vsftpd.conf file looks like this, and I try to connect with a local…
Florian
  • 822
69
votes
4 answers

Nicer FTP client than FileZilla?

FileZilla is really kind of "meh," when it comes to user interface. I'm wondering if there's something simpler/cleaner/slicker out there?
62
votes
3 answers

How do I temporarily run an FTP server?

In the world of Ubuntu, it seems you either always run an FTP server or you never do. Perhaps I'm the first network analyst who's needed to flash a Cisco, Checkpoint or Nokia image using Ubuntu... I need an FTP server for maybe 5 minutes, no more…
Scaine
  • 11,229
36
votes
7 answers

Basic Ubuntu FTP Server

I would like to setup a basic FTP server on my Ubuntu Server install. I have been playing with VSFTPD, but am having issues getting the server to allow me to create directories and copy files. I have set the system to allow local users, but it…
32
votes
4 answers

Permission denied in FTP even though I'm the owner

Okay, so I've tried my best at finding the answer to this by searching and looking through possible duplicates, but I just can't so forgive me if it's out there somewhere anyways. My issue is as follows. I've set the owner of /var/www to…
Tjita1
  • 493
32
votes
7 answers

Connect to FTP/SFTP in Dolphin or transfer Nautilus Bookmarks

I am really liking the power of Dolphin and all the KDE tools that go along with using it. What can I do to connect over FTP/SFTP with Dolphin?
Goddard
  • 4,860
29
votes
8 answers

How to Setup FTP to use in locally hosted wordpress

I have installed wordpress on my ubuntu 10.10 desktop edition and I am trying to install plugin from the browser (I know I can drop it to the wp-content/plugin but I want to do it via the web browser using FTP) I get this screen when I am trying to…
28
votes
4 answers

How to setup virtual users for vsftpd with access to a specific sub directory?

I need to be able to add a virtual users to vsftpd that only have access to a sub folder. The reason why I want to use virtual users is I only want to have 1 real user on the server. The FTP structure…
Avenyet
  • 864
24
votes
3 answers

vsftpd log file location?

Can someone tell me where is located the log file for vsftpd? I'm trying to learn how to install and configure a ftp server and I can't seem to find the log file. Can anybody tell me how to configure the service to make a log file or where is…
21
votes
1 answer

How to automatically sync the contents of a local folder with the contents of a ftp folder?

After searching everywhere I have not managed to find a specific answer for my question. On Windows there is an application called FTPbox that will automatically sync a local folder with an ftp one every set period of time. My question is, how do I…
Edward Nunn
  • 323
  • 1
  • 3
  • 5
21
votes
7 answers

How do I execute FTP commands on one line?

This is what I'm doing when I log into a FTP: ftp user:password@server ftp: user:password@server: Unknown host ftp> echo HELLO WORLD! ftp> quit I'd like to do a one-line FTP command... ftp user:password@server -command "echo HELLO WORLD" or "echo…
WernerCD
  • 652
21
votes
4 answers

How to find `.desktop` file location for a particular application

EDIT: This is not a duplicate as this question is the reverse of what the other question is asking. Here we know what is the application and we want to find its .desktop file that can be located in non standard places also. While the other question…
19
votes
3 answers

How to change vsftpd's default directory to / instead of the user's home directory?

I currently have vsftpd installed in such a way, that when a user, say for instance my account frederik authenticates, I will be directed to my home directory /home/frederik/. This is a problem for certain FTP clients, as they can not change to…
Freya
  • 311
18
votes
1 answer

FTP Permissions read but not write

I made a personal FTP server on an old laptop but when I connect I can only read/download no upload. How do I change this? Thanks for the help in advance I am use vsftpd
17
votes
1 answer

how to change vsftpd default port?

so here's the deal. I have vsftpd installed and am looking to change the default port to something other than 21. I've checked /etc/vsftpd.conf and can't find a setting to change the default port. I'm running Ubuntu 10.04, which doesn't have the…
Bryan
  • 763
1
2 3
50 51