Recommended console ftp clients
Solution 1:
To my mind, the most powerful command-line ftp client is undoubtly lftp.
- it allows one to use standard shell command over the ftp wire
- It provides up/down queue for long operations
Solution 2:
Check if Midnight Commander (mc
) is installed. If so, you can do ftp from there.
Solution 3:
You could make life really easy for yourself using a fuse filessytem.
On the machine you can ssh into, install curlftpfs
sudo apt-get install curlftpfs
Then add yourself to group fuse
sudo usermod -aG fuse <username>
Log out, and log back in again, for changes to take effect.
Make a directory for a mount point
mkdir ~/ftp
Then mount the ftp server as a local filesystem
curlftpfs ftp.server.com ~/ftp -o user=<ftp_username>
Enter the password when prompted.
You can then use the remote ftp servers files as if they appear on the local server. Allowing you to use cp, rsync etc without the hassle of handling ftp.
Read the man page for more information
Especially useful if you do a lot of this sort of thing.
Solution 4:
Just in case anyone still needs this :)
I was able to transfer a large website from a linux VM (from the SSH command line) to the Azure website cloud service DIRECTLY (via ftp) by using the ncftp client as guided here
Finally, remember to remove the ftp client from your vm afterwards.
cheers.