Link to home
Start Free TrialLog in
Avatar of vn77
vn77

asked on

Copying file from linux to windows using telnet

Hello experts,
I am using an windows box and accessing to a remote linux box using telnet.
How should I use the rcp (or any other copy command) to copy some files from the linux box to the windows box?
Thanks,
vn77
Avatar of yuzh
yuzh

You need to use FTP to transfer file from Linux to your windows PC.
You can get free FTP clinet for windows from:

http://www.thefreecountry.com/webmaster/freeftpclients.shtml

PS: Windows ship with command line version of FTP.
Avatar of vn77

ASKER

Sorry but assume I only have telnet?
By the way, is it easier to use some remote copy command over ssh to copy between two linux boxes ??? (please give example)
Thanks,
vn77
ASKER CERTIFIED SOLUTION
Avatar of ahoffmann
ahoffmann
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 vn77

ASKER

hello,
I manage to copy the files from that remote linux box to another linux box (instead of the windows box) using scp as follows:
scp username@hostname:/path/copied files   /local/path
Thanks everyone anyway,
vn77