Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to download folder from putty using ssh client [closed]

Tags:

how to download folder(contains folder inside folder and files) from putty using ssh client i want download entire Dump to local Drive... can any one guide me ...

like image 642
Rajesh Kuamr Chekuri Avatar asked Jun 17 '11 05:06

Rajesh Kuamr Chekuri


People also ask

How do I download a folder from PuTTY?

Just input the IP, Host + Pwd, then can copy and paste from/to server/local pc.

How do I download a folder from server using SSH?

you can scp - which will allow you to securely copy between hosts. Its located in /usr/bin on linux. SCP or secure copy command copies files and directories from one computer to another in batch. (For interactive user interface you can use SFTP as "user545035" stated.

How do I download a file from PuTTY to SSH?

Enter pscp.exe [email protected]:/file_path/filename c:\directory\filename on the command line except replace “username” with the name of an account that has permissions to access the remote computer through SSH, replace “x.x.x.x” with the IP address or hostname of the remote SSH computer, replace “file_path” with the ...

Can you download files through SSH?

It's based on the SSH protocol used with it. A client can use an SCP to upload files to a remote server safely, download files, or even transfer files via SSH across remote servers.


1 Answers

You need to use some kind of file-transfer protocol (ftp, scp, etc), putty can't send remote files back to your computer. I use Win-SCP, which has a straightforward gui. Select SCP and you should be able to log in with the same ssh credentials and on the same port (probably 22) that you use with putty.

like image 200
danny Avatar answered Oct 07 '22 10:10

danny