ssh傳輸檔案

2022-05-27 03:24:13 字數 663 閱讀 9002

linux下,本地和伺服器之間使用scp命令傳輸檔案;

scp傳輸檔案建立在ssh基礎之上;

scp username@servername:/path/filename /var/www/local_dir(本地目錄)

例如:scp [email protected]:/root/www/test.txt  /home/xb/html

2、上傳本地檔案到伺服器

scp /path/filename username@servername:/path

例如:

scp -r username@servername:/root/www/remote_dir/(遠端目錄) /var/www/local_dir(本地目錄)

例如:scp -r [email protected]:/root/www/html  /home/www/  

2.上傳目錄到伺服器

scp -r local_dir username@servername:remote_dir

例如:scp -r html  [email protected]:/root/www/  

把當前目錄下的html目錄上傳到伺服器的/root/www/ 目錄

ssh傳輸檔案

在linux下一般用scp這個命令來通過ssh傳輸檔案。username servername path filename var www local dir 本地目錄 例如scp root 192.168.0.101 var www test.txt 2 上傳本地檔案到伺服器 scp path f...

利用ssh傳輸檔案

在linux下一般用scp這個命令來通過ssh傳輸檔案。而如果你的工作環境是windows的話,那麼可以選擇用 secure crt,或者putty 這樣的ssh登入工具來進行傳輸.對於linux環境 一 利用scp傳輸檔案 scp username servername path filename...

利用ssh傳輸檔案

相信各位vpser在使用vps時會經常在不同vps間互相備份資料或者轉移資料,大部分情況下vps上都已經安裝了nginx或者類似的web server,直接將要傳輸的檔案放到web server的目錄,然後在目標機器上執行 wget 就行了。當vps上沒有安裝web server和ftp serve...