linux-scp傳檔案

peng163fj發表於2015-04-13
CentOS, 本地伺服器,ip: 192.168.1.111
Ubuntu, 遠端伺服器,ip: 192.168.1.112

1.複製遠端伺服器的目錄到本地伺服器
遠端伺服器192.168.1.112上面/tmp目錄下面有個目錄,裡面有個檔名為test,內容也為test
root@ubuntu:/tmp# cat test/test
test

複製遠端伺服器192.168.1.112的目錄/tmp/test到當前目錄下。
[root@CentOS_Test_Server tmp]#scp -r root@192.168.1.112:/tmp/test ./
The authenticity of host '192.168.1.112 (192.168.1.112)' can't be established.
RSA key fingerprint is 64:76:a6:1e:23:76:ec:25:5e:c2:f3:ef:fc:ad:48:7b.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.1.112' (RSA) to the list of known hosts.
root@192.168.1.112's password:
test 100% 5 0.0KB/s 00:00

注意複製到本地伺服器後形成的目錄結構為/tmp/test,而不是/tmp/tmp/test,一定要注意,這裡比較容易混淆,經過自己親自,再碰到類似的問題心裡就有底了。
[root@CentOS_Test_Server tmp]# ls test/
test

2.複製遠端伺服器的檔案到本地伺服器
將1中複製過來的目錄test刪除
rm -rf test

[root@CentOS_Test_Server tmp]# ls -l | grep test | grep -v "grep"

複製遠端伺服器192.168.1.112的檔案/tmp/test/test到當前目錄下。
[root@CentOS_Test_Server tmp]#scp root@192.168.1.112:/tmp/test/test ./
root@192.168.1.112's password:
test 100% 5 0.0KB/s 00:00
[root@CentOS_Test_Server tmp]# ls -l | grep test | grep -v "grep"
-rw-r--r-- 1 root root 5 Sep 22 14:07 test

3.複製本地伺服器的目錄到遠端伺服器
在/tmp目錄下面建立目錄dir111,在此目錄下建立檔案file111,內容為file111
[root@CentOS_Test_Server tmp]# mkdir dir111
[root@CentOS_Test_Server tmp]# echo 'content111' > dir111/file111
[root@CentOS_Test_Server tmp]# cat dir111/file111
content111

複製本地伺服器的目錄dir111到遠端伺服器的目錄/tmp下

與上述1中類似,複製到遠端伺服器後形成的目錄結構為/tmp/dir111,而不是/tmp/tmp/dir111,一定要注意,這裡比較容易混淆。

不管複製命令是scp -r dir111 root@192.168.1.112:/tmp還是scp -r /tmp/dir111 root@192.168.1.112:/tmp,在遠端伺服器上面生成的目錄結構均一樣,我親自測試過了。

[root@CentOS_Test_Server tmp]# scp -r /tmp/dir111 root@192.168.1.112:/tmp
root@192.168.1.112's password:
file111 100% 11 0.0KB/s 00:00 

遠端伺服器192.168.1.112上面的內容
root@ubuntu:/tmp# ls
dir111 test vmware-root
root@ubuntu:/tmp# cat dir111/file111
content111

4.複製本地伺服器的檔案到遠端伺服器
[root@CentOS_Test_Server tmp]#scp dir111/file111 root@192.168.1.112:/tmp
root@192.168.1.112's password:
file111 100% 11 0.0KB/s 00:00

遠端伺服器192.168.1.112上面的內容
root@ubuntu:/tmp# ls
dir111 file111 test vmware-root

延伸閱讀:
http://?wd=linux+scp
http://?hl=en&source=hp&q=linux+scp

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/21302630/viewspace-1571807/,如需轉載,請註明出處,否則將追究法律責任。

相關文章