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.

752 questions
11
votes
5 answers

FTP Server on Ubuntu

I'm looking for an FTP server application for my headless server, which is a public virtual machine with a public ip address. . I've narrowed it down to 3, at least from what I've read are the most adept. vsftpd proftpd pure-ftp I've been…
ErocM
  • 521
8
votes
6 answers

How to stop and remove ftp service?

I want to stop ftp and remove the service on Ubuntu 14.04 I tried sudo apt-get remove ftp and checked using command ps aux | grep ftp but the service was still running. Please suggest some way to stop it.
Dattatray
  • 83
  • 1
  • 1
  • 3
6
votes
3 answers

How to setup VSFTPD for multiple users including adding specific directories

I wish to configure vsftpd in 11.10 so that when a user connects he is shown or redirected to a specific folder. The name of the folder is not related to the user or home folder. It is related to a folder in /var/www. For example: If user cyrex logs…
Luis Alvarado
  • 211,503
5
votes
3 answers

FTP refuses any and all connections (vsftpd)

Even on localhost using the ftp command, through the web server on WordPress, on my personal computer through FileZilla, in short, I need my FTP server but it refuses to let anyone connect. Using SFTP works perfectly, but even when I enable SSL on…
Wargog
  • 309
  • 3
  • 4
  • 12
5
votes
1 answer

"enable passive mode in your FTP client" What does it mean, and how I do it

I tried to connect to a different machine with FTP. I continually get 500 Unable to service PORT commands ftp: bind: Address already in use The solution I got was to enable passive mode in my FTP client. What does it mean, and how do I do it?
4
votes
1 answer

Bulk upload via FTP is interrupted after approx. 50 files

1. The problem: Series upload of 100 or more files via FTP is interrupted. Behavior irregular. On a new PC from 2011, Ubuntu just installed. No other problem with Ubuntu. Fast browser action and Website loading. QUESTION What could I try, in…
Piotre
  • 61
4
votes
2 answers

How do I download a folder in ftp mode from the terminal?

Using the get command from the terminal in ftp mode, I can download a single file. Which command should I use in order to download a complete folder containing many files in ftp mode?
Tarunav
  • 43
4
votes
1 answer

FTP client - get file in one command

Possible Duplicate: How do I execute FTP commands on one line? I have the following FTP client conversation: variscite@variscite-desktop:~$ ftp 192.168.100.10 Connected to 192.168.100.10. 220 (vsFTPd 2.3.5) Name (192.168.100.10:variscite):…
Alex F
  • 1,889
  • 5
  • 20
  • 21
3
votes
3 answers

How to use specific IP with vsftpd?

Here is the scenario: We have one AWS Ubuntu server Server This server is working as ftp client Now when we try to connect to XYZ companies ftp server using this AWS server as client, it is sending it's local LAN IP while connecting to the ftp…
Hrish
  • 2,343
3
votes
2 answers

Where to find the config-file for ProFTP?

I just installed proftpd and I was wondering where I could find the configuration file, so I can set-up the server according to my wishes. I have tried /etc/proftpd.conf and /usr/local/etc/proftpd.conf, which both result (via "sudo gedit (path's…
Johann
  • 31
2
votes
0 answers

How to install the ftppwd utility on Ubuntu 14.04

I have Ubuntu 14.04 which needs the "ftppwd" utility installed. I'm trying to run a Unix shell script on Ubuntu. The Unix shell script uses the ftppwd command. As of now FTPPWD utility is not installed hence the command as such is not found on…
2
votes
1 answer

Error while connecting to the ftp server

I am getting stuck while connecting to the ftp server. I have Installed vsftpd and try ftps, ftp-ssl. ERROR: 534 Local policy on server does not allow TLS secure connections. 534 Local policy on server does not allow TLS secure connections. SSL not…
Pranay
  • 23
2
votes
1 answer

How to figure out why FTP isn't working?

I tried setting up a FTP Server on my Netbook, but I cannot connect to it. Now I wonder how can I figure out what I did wrong. I have an Apache2 server running on it to use with the domain (domain.dnsdynamics.com), and I can connect to that. //…
2
votes
1 answer

FTP access to one site is denied

I'm filling up one site via FTP. all works fine. But in several days FTP refused to connect. FileZilla's printing Connecting xxx.xxx.xxx.xxx..... Connection time out IP of server is pinged well. I had 4 assumptions: Something with Ubuntu I've…
2
votes
1 answer

Cannot login as Admin after vsftpd install

I have installed vsftpd and did some commands in terminal like chown root:root /home/myusername. And the next time I started my computer i could not log in as usual. An error message that erupts which says Could not update ICEauthority. PLZ HELP ME…
Vikash
  • 21
  • 1
1
2 3