How to copy a file from Remote AIX server to my local windows desktop

I am logging to remote AIX server, i want to copy a file from that server to local windows desktop. How can i do this?

Questions by ahmed4all

Showing Answers 1 - 5 of 5 Answers

ftp(File transfer protocol)- To transfer a file from one system to another.
ftp> hostname
ftp> get filename(to get a file)
ftp>>put filename(to put a file)
ftp>mget filenames(to get multiple files)
ftp>mput filenames(to put multiple files)
bye (to exit from ftp)

  Was this answer useful?  Yes

tonan

  • Jul 3rd, 2009
 

Usually you can ftp to transfer files from one system to another, but ftp uses plain text passwords, therefore you can use scp ( secured copy protocol)
unix/linux its inbuilt : scp
windows : pscp


so from the windows command prompt
pscp @:

This will ask for your password and then download the file to the current directory from where you are running pscp
pscp aixusr1@aixbox:vartmpfile1.log.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions