網站首頁 個人文件 個人總結 工作總結 述職報告 心得體會 演講稿 講話致辭 實用文 教學資源 企業文化 公文 論文

linux系統中scp命令的使用方法【精品多篇】

欄目: 實用文精選 / 釋出於: / 人氣:2.19W

linux系統中scp命令的使用方法【精品多篇】

Linux scp命令介紹 篇一

命令格式

scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]

[-l limit] [-o ssh_option] [-P port] [-S program]

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

簡易寫法

scp [可選引數] file_source file_target

引數說明:

-1: 強制scp命令使用協議ssh1

-2: 強制scp命令使用協議ssh2

-4: 強制scp命令只使用IPv4定址

-6: 強制scp命令只使用IPv6定址

-B: 使用批處理模式(傳輸過程中不詢問傳輸口令或短語)

-C: 允許壓縮。(將-C標誌傳遞給ssh,從而開啟壓縮功能)

-p:保留原檔案的修改時間,訪問時間和訪問許可權。

-q: 不顯示傳輸進度條。

-r: 遞迴複製整個目錄。

-v:詳細方式顯示輸出。scp和ssh(1)會顯示出整個過程的除錯資訊。這些資訊用於除錯連線,驗證和配置問題。

-c cipher: 以cipher將資料傳輸進行加密,這個選項將直接傳遞給ssh。

-F ssh_config: 指定一個替代的ssh配置檔案,此引數直接傳遞給ssh。

-i identity_file: 從指定檔案中讀取傳輸時使用的金鑰檔案,此引數直接傳遞給ssh。

-l limit: 限定使用者所能使用的頻寬,以Kbit/s為單位。

-o ssh_option: 如果習慣於使用ssh_config(5)中的引數傳遞方式,

-P port:注意是大寫的P, port是指定資料傳輸用到的埠號

-S program: 指定加密傳輸時所使用的程式。此程式必須能夠理解ssh(1)的選項。

1、從本地複製到伺服器

1) 複製檔案

#scp local_file remote_username@remote_ip:remote_folder

比如:

#scp /Users/louyuting/ :/opt/

複製本地/Users/louyuting/檔案到遠端的IP為的伺服器的/opt/目錄下。

2)複製目錄

#scp -r local_folder remote_username@remote_ip:remote_folder

比如:

#scp -r /Users/louyuting/ :/opt/

複製本地/Users/louyuting/ 目錄下的所有檔案到遠端的IP為的伺服器的/opt/目錄下。

2、從遠端複製到本地

從遠端複製到本地,只要將從本地複製到遠端的命令的後2個引數調換順序即可,如下例項。

應用例項:

#scp :/home/root/others/music /home/space/music/3

#scp -r :/home/root/others/ /home/space/music/

說明

1、如果遠端伺服器防火牆有為scp命令設定了指定的埠,我們需要使用 -p 引數來設定命令的埠號,命令格式如下:

#scp命令使用埠號 4588

scp -p 4588 remote@:/usr/local/ /home/administrator

2、使用scp命令要確保使用的使用者具有可讀取遠端伺服器相應檔案的許可權,否則scp命令是無法起作用的。

看了“Linux scp命令介紹”還想看:

Linux系統中scp命令引數說明 篇二

-1 強制scp命令使用協議ssh1

-2 強制scp命令使用協議ssh2

-4 強制scp命令只使用IPv4定址

-6 強制scp命令只使用IPv6定址

-B 使用批處理模式(傳輸過程中不詢問傳輸口令或短語)

-C 允許壓縮。(將-C標誌傳遞給ssh,從而開啟壓縮功能)

-p 保留原檔案的修改時間,訪問時間和訪問許可權。

-q 不顯示傳輸進度條。

-r 遞迴複製整個目錄。

-v 詳細方式顯示輸出。scp和ssh(1)會顯示出整個過程的除錯資訊。這些資訊用於除錯連線,驗證和配置問題。

-c cipher 以cipher將資料傳輸進行加密,這個選項將直接傳遞給ssh。

-F ssh_config 指定一個替代的ssh配置檔案,此引數直接傳遞給ssh。

-i identity_file 從指定檔案中讀取傳輸時使用的金鑰檔案,此引數直接傳遞給ssh。

-l limit 限定使用者所能使用的頻寬,以Kbit/s為單位。

-o ssh_option 如果習慣於使用ssh_config(5)中的引數傳遞方式,

-P port 注意是大寫的P, port是指定資料傳輸用到的埠號

-S program 指定加密傳輸時所使用的程式。此程式必須能夠理解ssh(1)的選項。

Linux系統中scp命令的詳細解釋 篇三

1、命令格式:

scp [引數] [原路徑] [目標路徑]

2、命令功能:

scp是 secure copy的縮寫, scp是linux系統下基於ssh登陸進行安全的遠端檔案拷貝命令。linux的scp命令可以在linux伺服器之間複製檔案和目錄。

.使用例項: 篇四

scp命令的實際應用概述:

從本地伺服器複製到遠端伺服器:

(1) 複製檔案:

命令格式:

程式碼如下:

scp local_file 《a href=“mailto:remote_username@remote_ip:remote_folder”》remote_username@remote_ip:remote_folder《/a》

或者

scp local_file 《a href=“mailto:remote_username@remote_ip:remote_file”》remote_username@remote_ip:remote_file《/a》

或者

scp local_file remote_ip:remote_folder

或者

scp local_file remote_ip:remote_file

第1,2個指定了使用者名稱,命令執行後需要輸入使用者密碼,第1個僅指定了遠端的目錄,檔名字不變,第2個指定了檔名

第3,4個沒有指定使用者名稱,命令執行後需要輸入使用者名稱和密碼,第3個僅指定了遠端的目錄,檔名字不變,第4個指定了檔名

(2) 複製目錄:

命令格式:

scp -r local_folder remote_username@remote_ip:remote_folder

或者

scp -r local_folder remote_ip:remote_folder

第1個指定了使用者名稱,命令執行後需要輸入使用者密碼;

第2個沒有指定使用者名稱,命令執行後需要輸入使用者名稱和密碼;

從遠端伺服器複製到本地伺服器:

從遠端複製到本地的scp命令與上面的命令雷同,只要將從本地複製到遠端的命令後面2個引數互換順序就行了。

Linux系統中scp命令使用例項 篇五

scp命令的實際應用概述:

從本地伺服器複製到遠端伺服器:

(1) 複製檔案:

命令格式:

複製程式碼程式碼如下:

scp local_file remote_username@remote_ip:remote_folder

或者

scp local_file remote_username@remote_ip:remote_file

或者

scp local_file remote_ip:remote_folder

或者

scp local_file remote_ip:remote_file

第1,2個指定了使用者名稱,命令執行後需要輸入使用者密碼,第1個僅指定了遠端的目錄,檔名字不變,第2個指定了檔名

第3,4個沒有指定使用者名稱,命令執行後需要輸入使用者名稱和密碼,第3個僅指定了遠端的目錄,檔名字不變,第4個指定了檔名

(2) 複製目錄:

命令格式:

scp -r local_folder remote_username@remote_ip:remote_folder

或者

scp -r local_folder remote_ip:remote_folder

第1個指定了使用者名稱,命令執行後需要輸入使用者密碼;

第2個沒有指定使用者名稱,命令執行後需要輸入使用者名稱和密碼;

從遠端伺服器複製到本地伺服器:

從遠端複製到本地的scp命令與上面的命令雷同,只要將從本地複製到遠端的命令後面2個引數互換順序就行了。

例項1:從遠處複製檔案到本地目錄

命令:scp :/opt/soft/ /opt/soft/

輸出:

複製程式碼程式碼如下:

[root@localhost ~]# cd /opt/soft/

[root@localhost soft]# ll

總計 80072

drwxr-xr-x 12 root root 4096 09-21 18:40 fms3.5

drwxr-xr-x 3 root root 4096 09-21 17:58 fms4.5

drwxr-xr-x 10 root root 4096 10-30 17:15 jdk1.6.0_16

drwxr-xr-x 10 root root 4096 09-17 19:27 jdk1.6.0_

-rwxr-xr-x 1 root root 81871260 2009-12-21

drwxrwxrwx 2 root root 4096 09-21 01:16 mysql

drwxr-xr-x 3 root root 4096 09-21 18:40 setup_file

drwxr-xr-x 9 root root 4096 09-17 19:23 tomcat6.0.32

drwxr-xr-x 9 root root 4096 2012-08-14 tomcat_7.0

[root@localhost soft]# scp :/opt/soft/

'spassword:

100% 479KB 478.7KB/s 00:00

[root@localhost soft]# ll

總計 80556

drwxr-xr-x 12 root root 4096 09-21 18:40 fms3.5

drwxr-xr-x 3 root root 4096 09-21 17:58 fms4.5

drwxr-xr-x 10 root root 4096 10-30 17:15 jdk1.6.0_16

drwxr-xr-x 10 root root 4096 09-17 19:27 jdk1.6.0_

-rwxr-xr-x 1 root root 81871260 2009-12-21

drwxrwxrwx 2 root root 4096 09-21 01:16 mysql

-rw-r--r-- 1 root root 490220 03-15 09:11

drwxr-xr-x 3 root root 4096 09-21 18:40 setup_file

drwxr-xr-x 9 root root 4096 09-17 19:23 tomcat6.0.32

drwxr-xr-x 9 root root 4096 2012-08-14 tomcat_7.0

[root@localhost soft]#

說明:

從機器上的/opt/soft/的目錄中下載 檔案到本地/opt/soft/目錄中

例項2:從遠處複製到本地

命令:scp -r :/opt/soft/mongodb /opt/soft/

輸出:

複製程式碼程式碼如下:

[root@localhost soft]# ll

總計 80556

drwxr-xr-x 12 root root 4096 09-21 18:40 fms3.5

drwxr-xr-x 3 root root 4096 09-21 17:58 fms4.5

drwxr-xr-x 10 root root 4096 10-30 17:15 jdk1.6.0_16

drwxr-xr-x 10 root root 4096 09-17 19:27 jdk1.6.0_

-rwxr-xr-x 1 root root 81871260 2009-12-21

drwxrwxrwx 2 root root 4096 09-21 01:16 mysql

-rw-r--r-- 1 root root 490220 03-15 09:11

drwxr-xr-x 3 root root 4096 09-21 18:40 setup_file

drwxr-xr-x 9 root root 4096 09-17 19:23 tomcat6.0.32

drwxr-xr-x 9 root root 4096 2012-08-14 tomcat_7.0

[root@localhost soft]# scp -r :/opt/soft/mongodb/opt/soft/

'spassword:

100% 28MB 28.3MB/s 00:01

README 100% 731 0.7KB/s 00:00

THIRD-PARTY-NOTICES 100% 7866 7.7KB/s 00:00

mongorestore 100% 7753KB 7.6MB/s 00:00

mongod 100% 7760KB 7.6MB/s 00:01

mongoexport 100% 7744KB 7.6MB/s 00:00

bsondump 100% 7737KB 7.6MB/s 00:00

mongofiles 100% 7748KB 7.6MB/s 00:01

mongostat 100% 7808KB 7.6MB/s 00:00

mongos 100% 5262KB 5.1MB/s 00:01

mongo 100% 3707KB 3.6MB/s 00:00

mongoimport 100% 7754KB 7.6MB/s 00:00

mongodump 100% 7773KB 7.6MB/s 00:00

GNU-AGPL-3.0 100% 34KB 33.7KB/s 00:00

[root@localhost soft]# ll

總計 80560

drwxr-xr-x 12 root root 4096 09-21 18:40 fms3.5

drwxr-xr-x 3 root root 4096 09-21 17:58 fms4.5

drwxr-xr-x 10 root root 4096 10-30 17:15 jdk1.6.0_16

drwxr-xr-x 10 root root 4096 09-17 19:27 jdk1.6.0_

-rwxr-xr-x 1 root root 81871260 2009-12-21

drwxr-xr-x 3 root root 4096 03-15 09:18 mongodb

drwxrwxrwx 2 root root 4096 09-21 01:16 mysql

-rw-r--r-- 1 root root 490220 03-15 09:11

drwxr-xr-x 3 root root 4096 09-21 18:40 setup_file

drwxr-xr-x 9 root root 4096 09-17 19:23 tomcat6.0.32

drwxr-xr-x 9 root root 4096 2012-08-14 tomcat_7.0

[root@localhost soft]#

說明:從機器上的/opt/soft/中下載mongodb 目錄到本地的/opt/soft/目錄來。

例項3:上傳本地檔案到遠端機器指定目錄

命令:scp /opt/soft/ :/opt/soft/scptest

輸出:

複製程式碼程式碼如下:

上傳前目標機器的目標目錄:

[root@localhost soft]# cd scptest/

[root@localhost scptest]# ll

總計 0

[root@localhost scptest]# ll

本地機器上傳:

[root@localhost soft]# scp /opt/soft/ :/opt/soft/scptest

'spassword:

100% 479KB 478.7KB/s 00:00

[root@localhost soft]#

上傳後目標機器的目標目錄:

[root@localhost scptest]# ll

總計 484

-rw-r--r-- 1 root root 490220 03-15 09:25

[root@localhost scptest]#

說明:複製本地opt/soft/目錄下的檔案 到遠端機器的opt/soft/scptest目錄

例項4:上傳本地目錄到遠端機器指定目錄

命令:scp -r /opt/soft/mongodb :/opt/soft/scptest

輸出:

複製程式碼程式碼如下:

上傳前目標機器的目標目錄:

[root@localhost ~]# cd /opt/soft/scptest/

[root@localhost scptest]# ll

總計 484

-rw-r--r-- 1 root root 490220 03-15 09:25

[root@localhost scptest]#

本地機器上傳:

[root@localhost ~]# scp -r /opt/soft/mongodb :/opt/soft/scptest

'spassword:

100% 28MB 28.3MB/s 00:01

README 100% 731 0.7KB/s 00:00

THIRD-PARTY-NOTICES 100% 7866 7.7KB/s 00:00

mongorestore 100% 7753KB 7.6MB/s 00:00

mongod 100% 7760KB 7.6MB/s 00:01

mongoexport 100% 7744KB 7.6MB/s 00:00

bsondump 100% 7737KB 7.6MB/s 00:00

mongofiles 100% 7748KB 7.6MB/s 00:00

mongostat 100% 7808KB 7.6MB/s 00:01

mongos 100% 5262KB 5.1MB/s 00:00

mongo 100% 3707KB 3.6MB/s 00:00

mongoimport 100% 7754KB 7.6MB/s 00:01

mongodump 100% 7773KB 7.6MB/s 00:00

GNU-AGPL-3.0 100% 34KB 33.7KB/s 00:00

[root@localhost ~]#

上傳後目標機器的目標目錄:

[root@localhost scptest]# ll

總計 488

drwxr-xr-x 3 root root 4096 03-15 09:33 mongodb

-rw-r--r-- 1 root root 490220 03-15 09:25

[root@localhost scptest]#

說明:

上傳本地目錄 /opt/soft/mongodb到遠端機器上/opt/soft/scptest的目錄中去