Linux檔案傳輸

2021-10-14 09:31:16 字數 556 閱讀 4874

在win上可以通過ssh與遠端linux主機進行檔案傳輸,主要使用scp指令

將遠端檔案firsy.py傳輸到本地

scp chen:/home/python_file/first.py d:/backoutsql/test_file
將本地檔案test.py傳輸到遠端伺服器

$ scp d:/backoutsql/test_file/test.py chen:/home/python_file/
將遠端資料夾home傳輸到本地(-r表示遞迴,即將指定資料夾下的檔案也複製到本地)

scp -r chen:/home/ d:/backoutsql/test_file
將本地資料夾home傳輸到遠端伺服器python_file下

scp -r d:/backoutsql/test_file/home/ chen:/home/python_file/
引入目錄的時候記得新增伺服器名稱就行了

參考linux 通過ssh傳輸檔案

Linux檔案傳輸

不同系統間的檔案傳輸 tar 打包 tar c 新建打包檔案 tar t 檢視打包的內容,重點在檢視檔名 tar x 解打包,解壓縮 tar j bzip2壓縮解壓縮 tar z gzip壓縮解壓縮 tar v 在壓縮 解壓縮的過程中,將正在處理的檔案名列出來 tar r 新增檔案到包中 tar f...

Linux檔案傳輸

從 遠端 複製到 本地,只要將 從 本地 複製到 遠端 的命令 的 後2個引數 調換順序 即可 例如 scp root www.cumt.edu.cn home root others music home space music 1.scp r www.cumt.edu.cn home root ...

linux 檔案傳輸

tar,cpio 歸檔命令 tar cvf 歸檔.tar file1 file2 tar cvf tar file remove files 壓縮並且刪除原檔案 gzip file 壓縮檔案成file.gz gzip d file.gz 解壓 bzip2 file 用gzip壓縮 bzip2 d f...