2014-03-28 57 views
0

如何從本地機器使用SCP複製文件夾及其內容(文件夾內部)到遠程機器。遠程中不存在的SCP文件夾

我想複製:

/wp-content 

到我的遠程服務器上,但可溼性粉劑內容不存在那裏。

回答

0

我會第一個tar文件夾,然後送過來SCP

第一焦油

tar -zcvf wp-content.tar.gz ./wp-content 

然後發送scp

scp ./wp-content.tar.gz [email protected]:/some/remote/directory 

然後登錄到遠程機器

ssh [email protected] 

導航到該目錄並解壓

cd /some/remote/directory 
tar -xzvf wp-content.tar.gz ./ 
0

rsync的-ave SSH/WP-conent用戶@ SERVER_IP:/路徑/ some_non_existing_dir_to_copy/

0
scp -r wp-content [email protected]:/destination 

SCP -r(遞歸複製),如果它不在那裏已經將創建目標文件夾。

相關問題