2021-05-12 14:32:11
Linux scp命令札記
功能:
scp是 secure copy的縮寫, scp是Linux系統下基於ssh登陸進行安全的遠端檔案拷貝命令。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)的選項。
範例一:
從本地傳資料夾到遠端。
命令格式:scp local_file remote_username@remote_ip:remote_folder
把本地當前目錄下mcu資料夾複製到10.84.2.104伺服器的/opt/aaa目錄下。
[root@localhost opt]# ll
total 192560
drwx------ 2 root root 16384 Aug 29 2016 lost+found
drwxr-xr-x 9 root root 4096 Sep 19 03:33 mcu
-rw-r--r-- 1 root root 197154017 Oct 23 09:34 mcu.zip
[root@localhost opt]# scp -P 22223 -r mcu root@10.84.2.104:/opt/aaa
The authenticity of host '[10.84.2.104]:22223 ([10.84.2.104]:22223)' can't be established.
ECDSA key fingerprint is 92:7e:86:77:fb:8e:a8:fc:e2:b6:6c:44:8c:5b:82:e7.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[10.84.2.104]:22223' (ECDSA) to the list of known hosts.
root@10.84.2.104's password:
範例二:
從遠端複製到本地
命令格式:scp remote_username@remote_ip:remote_folder local_file
把10.84.2.104伺服器的/opt/aaa目錄下的mcu.zip檔案複製到本地/opt/目錄下。
[root@localhost opt]# ll
total 20
drwx------ 2 root root 16384 Aug 29 2016 lost+found
drwxr-xr-x 9 root root 4096 Sep 19 03:33 mcu
[root@localhost opt]#
[root@localhost opt]#
[root@localhost opt]# scp -P 22223 root@10.84.2.104:/opt/hpl/mcu.zip /opt/
root@10.84.2.104's password:
Permission denied, please try again.
root@10.84.2.104's password:
mcu.zip 100% 188MB 94.0MB/s 00:02
[root@localhost opt]# ll
total 192556
drwx------ 2 root root 16384 Aug 29 2016 lost+found
drwxr-xr-x 9 root root 4096 Sep 19 03:33 mcu
-rw-r--r-- 1 root root 197154017 Oct 23 09:47 mcu.zip
相關文章