English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I am running windows XP here, and I have Putty linked to a linux box there. I need to load a file from here onto the linux box there.

2006-12-16 06:13:40 · 3 answers · asked by rosrucerp 2 in Computers & Internet Other - Computers

3 answers

You can't, Putty itself is just a Telnet/SSH client and can't do FTP. There's is another application in the Putty suite though that can do (S)FTP, it's called PSFTP and you can get it here:

http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

Though personally I prefer SmartFTP:

http://www.smartftp.com/

2006-12-16 06:24:56 · answer #1 · answered by Bamba 5 · 0 0

PUTTY is a terminal emulator. It doesn't have an ability to transfer files. You'll have to use ftp or sftp to do the task.

2006-12-16 14:21:20 · answer #2 · answered by tkquestion 7 · 0 0

in the putty suite you can use pscp (psftp is "better" but does not work with all the server side installations, and is slightly harder to script)

To copy the file /etc/hosts from the server example.com as user fred to the file c:\temp\example-hosts.txt, you would type:

pscp fred@example.com:/etc/hosts c:\temp\example-hosts.txt

To send (a) file(s) to a remote server:

pscp [options] source [source...] [user@]host:target

So to copy the local file c:\documents\foo.txt to the server example.com as user fred to the file /tmp/foo you would type:

pscp c:\documents\foo.txt fred@example.com:/tmp/foo

You can use wildcards to transfer multiple files in either direction, like this:

pscp c:\documents\*.doc fred@example.com:docfiles
pscp fred@example.com:source/*.c c:\source

2006-12-16 15:14:04 · answer #3 · answered by Coeurderoy 2 · 0 0

fedest.com, questions and answers