Link to home
Start Free TrialLog in
Avatar of Pra Sys
Pra SysFlag for India

asked on

How to ftp from linux

Hi,

I have ftp address like below

ftp://user:password@ee.com

I want to upload one file from my linux machine to above ftp site. How can I login, change mode to binary and upload file to this site?

Thanks.
Avatar of Pra Sys
Pra Sys
Flag of India image

ASKER

ftp://user:password@ee.com is just a site for example and not a real site. Thanks.
ASKER CERTIFIED SOLUTION
Avatar of Garry Glendown
Garry Glendown
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Pra Sys

ASKER

I get this error

ftp: Name or service not known
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of wvuser1
wvuser1

You could try enter this command:
sudo apt-get install ftp

Open in new window

To install ftp client, and then follow Garry's recomendation..
(Hope the linux distro is the one i imagined ^^)
Actually I guess FTP client is already installed, otherwise he would have gotten something like "-bash: ftp: command not found
" ... ;)
ahh, right; my bad ^^
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Pra Sys

ASKER

Thanks.