SCP Remote to Local

0

This instructional explains methods to fetch recordsdata and directories from a far flung host to our native tool.

SCP or Secure Copy Protocol is an SSH-based protocol that permits sharing of recordsdata between far flung units. Using SCP, you’ll be able to ship a obtain record from and to an area tool or between far flung units.

Currently, SCP is thought of as old-fashioned, and it’s been changed through SFTP and RSYNC. At the top of the SCP directions, I added tricks to obtain recordsdata from far flung hosts the use of SFTP with a equivalent syntax as SCP.

Copy or Download a File From Remote to Local Using SCP

SCP syntax is lovely easy. Just invoke SCP adopted through the far flung username, @, the IP deal with or host, colon, and the trail to the record. If now not specified, the default trail is the far flung person’s house listing. Then, outline the native trail the place the record will likely be saved in the community.

The scp command was once designed to be very similar to the cp command. The record reproduction’s location is specified on the finish of the command.

A easy scp instance to replicate a far flung record to the native tool can be:

scp @:  

In my case, I will be able to reproduction the record named linuxhint from the far flung tool 192.168.1.100. The linuxhint record is saved at the kali person’s house listing, the person I will be able to authenticate. Therefore after the colon, I don’t specify the trail, which is the house listing through default, and I simply kind the filename (“linuxhint”). Then, I specify the present listing because the native location to retailer the record through typing a dot:

scp [email protected]:linuxhint .

As you’ll be able to see, the linuxhint record was once copied into the present native listing.

In the next instance, I obtain the record named linuxhint2 from the far flung tool to the /house/linuxhint/locdir listing. The linuxhint2 record is saved within the dir listing named inside the far flung person (kali) house listing:

scp [email protected]:dir/linuxhint2 /house/linuxhint/locdir/

Copy or Download a Directory Recursively Using SCP

To obtain or reproduction directories from far flung to native the use of SCP, you wish to have to put into effect the -r (recursively) flag.

With the exception of the -r flag added as proven within the following instance, the syntax to obtain directories is equal to downloading recordsdata from far flung to native units:

scp -r [email protected]:dir/ /root/

As you’ll be able to see, the listing named dir was once downloaded with all its content material.

Upload a File or Directory From Local to Remote Using SCP

The earlier segment of this instructional defined methods to fetch or obtain recordsdata from a far flung tool the use of SCP. This segment of the academic explains methods to add or ship a record to a far flung tool.

The instance underneath displays methods to ship or push a record named linuxhintfile to the far flung tool’s default listing or the person’s house. The distinction with receiving recordsdata is you wish to have to outline the record to ship or its trail simply after invoking SCP, as proven within the following screenshot.

scp linuxhintfile [email protected]:

Remember, the scp command was once designed to stay the cp command syntax. Therefore, the record vacation spot listing is at all times specified on the finish of the command, each when sending or fetching recordsdata.

Defining directories is equal to when receiving or downloading recordsdata. The instance underneath emphasised methods to ship the record named file2 and saved it underneath the linuxhint person house listing. The record will likely be stored within the far flung tool’s dir subdirectory, situated within the default house listing.

scp /house/linuxhint/file2 [email protected]:dir/

To ship directories to use a equivalent syntax, simply upload the -r flag to ship recordsdata recursively, as proven within the symbol underneath. The linuxhintdir listing is shipped to the far flung tool’s /tmp listing:

Fetch or Download Files and Directories Using SFTP

Downloading recordsdata the use of SCP is an out of date means changed principally through SFTP (Secure File Transference Protocol). The present correct techniques to switch recordsdata are SFTP or RSYNC. SFTP can be utilized in interactive mode, however this segment displays methods to use it with a equivalent syntax as SCP.

In the instance underneath, The sftp command is used to obtain the record named linuxhint from the far flung host to the native /tmp listing.

sftp [email protected]:linuxhint /tmp

Fetching directories recursively the use of SFTP calls for the -r flag, identical to when the use of the scp command, as proven within the screenshot underneath. The linuxhintdir listing is downloaded to the native /tmp listing.

sftp -r [email protected]:linuxhintdir /tmp

As you’ll be able to see, the listing was once downloaded recursively.

The SFTP command is essentially utilized in its interactive mode, which is deeply defined on this instructional. Also, imagine the use of the rsync command, every other up-to-date and protected choice to the old-fashioned scp command.

 Conclusion

Downloading recordsdata from a far flung host to an area tool the use of SCP is most probably the principle selection for many Linux customers, together with gadget directors. As you’ll be able to see scp is an easy command, virtually as simple to make use of because the cp command. We at all times assumed it’s protected since its title says it’s protected. However, it’s not protected, and it was once flagged as deprecated through its builders.

The primary choice, the Secure File Transference Protocol or SFTP protocol, isn’t so user-friendly because the scp command in its interactive mode. That’s some of the causes in the back of the scp command recognition even after being deprecated. However, customers will have to imagine adopting SFTP or RSYNC as the principle alternatives.

Thank you for studying this instructional, stay following Linux Hint for extra Linux pointers and tutorials.

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept Read More