Windows與Ubuntu通過ssh傳檔案

2022-08-29 09:00:11 字數 810 閱讀 1402

ubuntu安裝ssh

sudo apt-get install openssh-server

2.啟動shh服務

sudo /etc/init.d/ssh start

3.ssh常用命令

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

scp /path/filename username@servername:/path

例如scp /var/www/test.php  [email protected]:/var/www/  把本機/var/www/目錄下的test.php檔案上傳到192.168.0.101這台伺服器上的/var/www/目錄中

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

例如:scp -r [email protected]:/var/www/test  /var/www/  

scp  -r local_dir username@servername:remote_dir

例如:scp -r test  [email protected]:/var/www/   把當前目錄下的test目錄上傳到伺服器的/var/www/ 目錄

虛擬機器ubuntu與本機windows通訊

1.虛擬機器上網 1 注意事項,需關閉ubuntu防火牆 2 設定ubuntu ip為自動獲取 具體資訊訪問 以dhcp方式配置網絡卡 編輯檔案 etc network inte ces sudo vi etc network inte ces 並用下面的行來替換有關eth0的行 the prima...

ubuntu與windows共享檔案

一 通過vmmare tool工具共享檔案 ubuntu系列10.04 11.04 12.04等虛擬機器中安裝vmware tools參考下面兩篇文章。我的電腦是ubuntu12.04系統,安裝vmware tool工具失敗。解決方法 在軟體中心中安裝vmware client。通過mount命令可...

ubuntu與windows雙系統安裝

一 安裝grub4dos。2.修改c boot.ini,最後一行新增 c grldr grub for dos 若沒有boot.ini,可以在windowsxp下,計算機 屬性 高階 啟動與故障恢復 編輯,加入c grldr grub for dos grub4dos就這樣安裝完畢了。二 硬碟安裝u...