Linux 命令大全
Linux scp命令用于Linux之間復(fù)制文件和目錄。
scp是 secure copy的縮寫(xiě), scp是linux系統(tǒng)下基于ssh登陸進(jìn)行安全的遠(yuǎn)程文件拷貝命令。
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
簡(jiǎn)易寫(xiě)法:
scp [可選參數(shù)] file_source file_target
參數(shù)說(shuō)明:
命令格式:
scp -r local_folder remote_username@remote_ip:remote_folder 或者 scp -r local_folder remote_ip:remote_folder
應(yīng)用實(shí)例:
scp -r /home/space/music/ root@www.runoob.com:/home/root/others/ scp -r /home/space/music/ www.runoob.com:/home/root/others/
上面命令將本地 music 目錄復(fù)制到遠(yuǎn)程 others 目錄下。
從遠(yuǎn)程復(fù)制到本地linux命令,只要將從本地復(fù)制到遠(yuǎn)程的命令的后2個(gè)參數(shù)調(diào)換順序即可,如下實(shí)例
應(yīng)用實(shí)例:
scp root@www.runoob.com:/home/root/others/music /home/space/music/1.mp3 scp -r www.runoob.com:/home/root/others/ /home/space/music/
1.如果遠(yuǎn)程服務(wù)器防火墻有為scp命令設(shè)置了指定的端口linux命令,我們需要使用 -P 參數(shù)來(lái)設(shè)置命令的端口號(hào),命令格式如下:
#scp 命令使用端口號(hào) 4588 scp -P 4588 remote@www.runoob.com:/usr/local/sin.sh /home/administrator
2.使用scp命令要確保使用的用戶具有可讀取遠(yuǎn)程服務(wù)器相應(yīng)文件的權(quán)限,否則scp命令是無(wú)法起作用的。
Linux 命令大全
上一個(gè)教程:linux命令中的“<”和“
下一個(gè)教程:新手入門(mén)Linux命令集錦