linux scp命令:(從一臺LINUX直接考另外一臺LINUX服務器上的文件)

從一臺LINUX直接考另外一臺LINUX服務器上的文件。


條件:本機要裝有LINUX客戶端,服務器開啓SSH服務

命令格式:
scp ip:/remotepath/ /localpath/

例:
scp 50.11.0.19:/disk4/mov_lianxu/suitangyingxiongzhuan/*.* /disk6/mov_lianxu/suitangyingxiongzhuan/

會提示輸入遠程服務器的ROOT的密碼。成功了就顯示考貝文件的百分比


scp命令的用處html

scp在網絡上不一樣的主機之間複製文件,它使用ssh安全協議傳輸數據,具備和ssh同樣的驗證機制,從而安全的遠程拷貝文件。 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命令的參數說明: 網絡

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

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

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

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

-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命令的實際應用

1>從本地服務器複製到遠程 服務器

(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個指定了文件名

實例:
scp /home/linux/soft/scp.zip root@www.mydomain.com:/home/linux/others/soft
scp /home/linux/soft/scp.zip root@www.mydomain.com:/home/linux/others/soft/scp2.zip
scp /home/linux/soft/scp.zip www.mydomain.com:/home/linux/others/soft
scp /home/linux/soft/scp.zip www.mydomain.com:/home/linux/others/soft/scp2.zip

(2) 複製目錄:
命令格式:
scp -r local_folder remote_username@remote_ip:remote_folder
或者
scp -r local_folder remote_ip:remote_folder

第1個指定了用戶名,命令執行後須要輸入用戶密碼;
第2個沒有指定用戶名,命令執行後須要輸入用戶名和密碼;

例子:
scp -r /home/linux/soft/ root@www.mydomain.com:/home/linux/others/
scp -r /home/linux/soft/ www.mydomain.com:/home/linux/others/

上面 命令 將 本地 soft 目錄 複製 到 遠程 others 目錄下,即複製後遠程服務器上會有/home/linux/others/soft/ 目錄

2>從遠程服務器複製到本地服務器

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

例如: scp root@www.mydomain.com:/home/linux/soft/scp.zip /home/linux/others/scp.zip scp www.mydomain.com:/home/linux/soft/ -r /home/linux/others/

相關文章
相關標籤/搜索