linux 檔案傳輸

2021-08-20 19:05:35 字數 855 閱讀 3972

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 file.bz2    解壓

zip file.zip file    把file加入file.zip

tar zcvf test.tar.gz *.file    用gzip壓縮

tar zxvf test.tar.gz    解壓

tar jcvf test.tar.bz2 *.file    用bzip2壓縮

tar jxvf test.tar.bz2    解壓

scp rsync    檔案傳輸

scp *.file 192.168.2.100:/opt    把檔案傳輸到遠端ip

rsync -z file ip:/opt    把檔案壓縮並且傳輸:-z

rsync -a /etc/ ip:/opt    把etc下面所有東西copy過去

rsync -a /etc ip:/opt    把etc整個資料夾copy

grsync &    是圖形化copy命令,必須yum install先

windows拖拽檔案到linux    yum install lrzsz

linux輸入rz,搜尋windows裡的檔案直接傳輸到linux目錄

linux輸入sz+file,把linux檔案傳輸到windows

備註:不支援putty

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檔案傳輸

在win上可以通過ssh與遠端linux主機進行檔案傳輸,主要使用scp指令 將遠端檔案firsy.py傳輸到本地 scp chen home python file first.py d backoutsql test file將本地檔案test.py傳輸到遠端伺服器 scp d backouts...