Reputation: 618
I was wondering how one would get a file off of a linux server and onto a windows desktop. Im using putty to connect to the linux box. Thanks
Upvotes: 0
Views: 4744
Reputation: 23443
Assuming that most Linux servers have FTP servers installed, or are SSH enabled, you could install an FTP client on your Windows desktop, FTP / SFTP to your Linux server, and transfer anything up / down in that fashion.
Here is a post detailing how - if you wish to play around with using command prompt and psftp.
Upvotes: 1
Reputation: 126777
You have to use pscp
, included into the normal PuTTY distribution. If you like better GUI, you can use FileZilla, that supports SFTP.
Upvotes: 3
Reputation: 16185
You can use pscp for that. It's putty's sibling: http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
Upvotes: 1