Detailed explanation of using scp command to copy files remotely in Linux

Detailed explanation of using scp command to copy files remotely in Linux

Preface

scp is the abbreviation of secure copy. scp is a command for secure remote file copying based on ssh login in Linux system. The Linux scp command can copy files and directories between Linux servers.

Use syntax:

scp [parameters] [source path] @IP:/destination path

The scp parameters are as follows:

-1: Force the scp command to use protocol ssh1

-2: Force the scp command to use the protocol ssh2

-4: Force the scp command to use only IPv4 addressing

-6: Force the scp command to use only IPv6 addressing

-B: Use batch mode (do not ask for a transfer password or phrase during the transfer)

-C: Enable compression. (Pass the -C flag to ssh to turn on compression)

-p: retain the modification time, access time and access permissions of the original file.

-q: Do not display the transfer progress bar.

-r: Recursively copy the entire directory.

-v: Display output in verbose mode. scp and ssh(1) will display debugging information throughout the process. This information is used to debug connection, authentication, and configuration problems.

-c cipher: Encrypt data transmission with cipher. This option will be passed directly to ssh.

-F ssh_config: Specifies an alternative ssh configuration file. This parameter is passed directly to ssh.

-i identity_file: Read the key file used for transmission from the specified file. This parameter is passed directly to ssh.

-l limit: Limit the bandwidth that the user can use, in Kbit/s.

-o ssh_option: If you are used to passing parameters using ssh_config(5),

-P port: Note that it is capital P, port is the port number used for data transmission

-S program: Specifies the program to use for encrypted transmission. The program must understand ssh(1) options.

Test: server server ip 192.168.43.117 backup server ip 192.168.43.200

①Copy data from local to remote:

Copy the server/tmp/directory to the remote backup server/text directory:

scp -r /tmp/ [email protected]: /text 

View the copied data on the backup server:

②Copy data from remote to local:

Copy the 123.log file in the backup server/text directory to the local server/tmp/directory:

scp [email protected]:/text/123.log /tmp/ 

scp is a command for remotely copying files in Linux. A similar command is cp, but cp only copies files locally and cannot copy files across servers. In addition, scp transmission is encrypted. It may affect the speed slightly. When your server hard disk becomes a read-only system, you can use scp to help you move the files out. In addition, scp does not take up much resources and does not increase the system load much. In this regard, rsync is far inferior to it. Although rsync is faster than scp, when there are many small files, rsync will cause the hard disk I/O to be very high, while scp will basically not affect the normal use of the system. In order to improve the security of data when scp is copied across machines, ssh connection and encryption are used. If ssh password-free login is configured between machines, no password is required when using scp.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • Vue-CLI 3 scp2 automatic deployment of projects to the server method
  • Python calls scp to upload files to the server example
  • How to use ssh and scp through secret keys in Windows
  • Python executes scp command to copy files and folders to the directory of the remote host
  • Linux uses the scp command to copy files to the local computer and copy local files to the remote server
  • Detailed explanation of how to pass password to ssh/scp command in bash script
  • Python Pexpect implements the method of scp copying with password input
  • scp copies data from one linux server to another linux server
  • How to implement scp operation in Android

<<:  MYSQL implements the continuous sign-in function and starts from the beginning after one day of sign-in (sql statement)

>>:  Vue project code splitting solution

Recommend

MySQL statement arrangement and summary introduction

SQL (Structured Query Language) statement, that i...

Detailed analysis of the MySQL slow log opening method and storage format

In development projects, we can monitor SQL with ...

Detailed explanation of Nginx regular expressions

Nginx (engine x) is a high-performance HTTP and r...

How to use SessionStorage and LocalStorage in Javascript

Table of contents Preface Introduction to Session...

Vue implements a visual drag page editor

Table of contents Drag and drop implementation Dr...

Zabbix monitors mysql instance method

1. Monitoring planning Before creating a monitori...

Installation tutorial of MySQL 5.1 and 5.7 under Linux

The operating system for the following content is...

How to modify the root password of mysql under Linux

Preface The service has been deployed on MySQL fo...

Axios project with 77.9K GitHub repository: What are the things worth learning?

Table of contents Preface 1. Introduction to Axio...

Implementing a simple carousel based on JavaScript

This article shares the specific code of JavaScri...