Home Operation and Maintenance Linux Operation and Maintenance How to use the linux advanced copy command scp

How to use the linux advanced copy command scp

May 12, 2023 am 10:43 AM
linux scp

linux command scp

scp — secure copy (remote file copy program): She is a secure remote file copy program.

synopsis: The syntax is as follows
scp [-12346bcpqrv] [-c cipher] [-f ssh_config] [-i identity_file] [-l limit] [-o ssh_option] [-p port] [- s program]

[[user@]host1:]file1 ... [[user@]host2:]file2

You may be confused after seeing the various parameters and options above. However, it doesn’t matter, let’s break it into parts and analyze them one by one.
Actually, this command is very similar to the cp we usually use.

scp The simplest usage is scp [[user@]host1:]file1 ... [[user@]host2:]file2, can you understand it?
It doesn’t matter if you don’t understand it. Let’s give an example: I want to copy the /home/oracle/*.tar files from the Linux host 192.168.1.2 to the /home/siebel of the Linux host 192.168.1.3. It can be written in the above format:
scp oracle@192.168.1.2:/home/oracle/*.tar siebel@192.168.1.3:/siebel/
After entering the above command, press enter and line change to confirm, which may cause You enter the password, enter the password according to the prompts.
When executing for the first time, the following error occurred: ssh: connect to host 192.168.1.99 port 22: connection refused, so the sshd program was started and the script was executed: # /etc/init.d/sshd start, successfully solved above questions.

As for the other parameters of this command, they are basically not used in daily work, so I won’t give examples. I will simply translate them for your reference.

description: Description
scp copies files between hosts on a network. It uses ssh(1) for data transfer, and uses the same authentication and provides the same security as ssh(1). unlike rcp( 1), scp will ask for passwords or passphrases if they are needed for authentication.
scp copies data between network hosts. It uses ssh(1) for data transmission and uses the same security authentication method. Unlike rcp(1), scp will ask for a password when necessary.

The options are as follows:
The specific options are as follows:
-1 forces scp to use protocol 1.
Forces scp to use protocol 1

-2 forces scp to use protocol 2.
Forces scp to use protocol 2

-3 copies between two remote hosts are transferred through the local host.without this option the data is copied
directly between the two remote hosts.note that this option disables the progress meter.
Transfer data between two remote hosts through the local host. Without this option, data will be copied directly between remote hosts. Note: This option does not support progress bar display.

-4 forces scp to use ipv4 addresses only.
Forces scp to use only ipv4 addresses.

-6 forces scp to use ipv6 addresses only.
Forces scp to use only ipv6 addresses.

-b selects batch mode (prevents asking for passwords or passphrases).
Use batch mode (prevents asking for passwords or passphrases)

-c compression enable.passes the -c flag to ssh(1) to enable compression.
Enable compression. Pass the -c parameter to ssh to enable compression

-c cipher
selects the cipher to use for encrypting the data transfer.this option is directly passed to ssh(1).
Selects the cipher to use for encrypting the data transfer. transport, this option is passed directly to ssh(1).

-f ssh_config
specifies an alternative per-user configuration file for ssh.this option is directly passed to ssh(1).
Specifies an interactive user configuration file for ssh, this option is Passed directly to ssh(1).

-l limit
limits the used bandwidth, specified in kbit/s.
Limits the used bandwidth, in kb.

-p port
specifies the port to connect to on the remote host.
Specifies the link port on the remote host
-q quiet mode
Silent mode:

-r recursively copy entire directories
Recursively copy entire directories

-s program
name of program to use for the encrypted connection.the program must understand ssh(1) options.
Program used to encrypt links. This program needs to be able to recognize the ssh(1) options.

exit status
Post-execution status
the scp utility exits 0 on success, and >0 if an error occurs.
When the scp tool command is successfully executed, the return code is 0, Any error return code is greater than 0

The above is the detailed content of How to use the linux advanced copy command scp. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1657
14
PHP Tutorial
1257
29
C# Tutorial
1229
24
Linux Architecture: Unveiling the 5 Basic Components Linux Architecture: Unveiling the 5 Basic Components Apr 20, 2025 am 12:04 AM

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

vscode terminal usage tutorial vscode terminal usage tutorial Apr 15, 2025 pm 10:09 PM

vscode built-in terminal is a development tool that allows running commands and scripts within the editor to simplify the development process. How to use vscode terminal: Open the terminal with the shortcut key (Ctrl/Cmd). Enter a command or run the script. Use hotkeys (such as Ctrl L to clear the terminal). Change the working directory (such as the cd command). Advanced features include debug mode, automatic code snippet completion, and interactive command history.

How to check the warehouse address of git How to check the warehouse address of git Apr 17, 2025 pm 01:54 PM

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

Where to write code in vscode Where to write code in vscode Apr 15, 2025 pm 09:54 PM

Writing code in Visual Studio Code (VSCode) is simple and easy to use. Just install VSCode, create a project, select a language, create a file, write code, save and run it. The advantages of VSCode include cross-platform, free and open source, powerful features, rich extensions, and lightweight and fast.

How to run java code in notepad How to run java code in notepad Apr 16, 2025 pm 07:39 PM

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

vscode terminal command cannot be used vscode terminal command cannot be used Apr 15, 2025 pm 10:03 PM

Causes and solutions for the VS Code terminal commands not available: The necessary tools are not installed (Windows: WSL; macOS: Xcode command line tools) Path configuration is wrong (add executable files to PATH environment variables) Permission issues (run VS Code as administrator) Firewall or proxy restrictions (check settings, unrestrictions) Terminal settings are incorrect (enable use of external terminals) VS Code installation is corrupt (reinstall or update) Terminal configuration is incompatible (try different terminal types or commands) Specific environment variables are missing (set necessary environment variables)

What is the main purpose of Linux? What is the main purpose of Linux? Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

How to run sublime after writing the code How to run sublime after writing the code Apr 16, 2025 am 08:51 AM

There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.

See all articles