中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問(wèn)手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級(jí)網(wǎng)工!

招聘|合作 登陸|注冊(cè)

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

Linux scp命令

時(shí)間:2019-06-16

linux命令手冊(cè)_linux命令_linux命令windows命令

Linux 命令大全 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

linux命令_linux命令windows命令_linux命令手冊(cè)

簡(jiǎn)易寫(xiě)法:

scp [可選參數(shù)] file_source file_target 

參數(shù)說(shuō)明:

命令格式:

linux命令手冊(cè)_linux命令_linux命令windows命令

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 目錄下。

linux命令windows命令_linux命令手冊(cè)_linux命令

從遠(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命令中的“<”和“