Centos7下的檔案壓縮

2021-10-25 01:49:24 字數 2147 閱讀 4110

[root@web01 ~]# yum provides zip

已載入外掛程式:fastestmirror

loading mirror speeds from cached hostfile

* base: mirrors.aliyun.com

* epel: hkg.mirror.rackspace.com

* extras: mirrors.aliyun.com

* updates: mirrors.aliyun.com

zip-3.0-11.el7.x86_64 : a file compression and packaging utility compatible

[root@web01 ~]# yum install zip-3.0-11.el7.x86_64
[root@web01 www]# zip -r -q wwwroot.zip  wwwroot

[root@web01 www]# ls

backup server wwwlogs wwwroot wwwroot.zip

[root@web01 www]# yum search unzip

已載入外掛程式:fastestmirror

loading mirror speeds from cached hostfile

* base: mirrors.aliyun.com

* epel: fedora.cs.nctu.edu.tw

* extras: mirrors.aliyun.com

* updates: mirrors.aliyun.com

***********************************==== n/s matched: unzip ***********************************====

perl-perlio-gzip.x86_64 : perl extension to provide a perlio layer to gzip/gunzip

unzip.x86_64 : a utility for unpacking zip files

[root@web01 www]# yum install -y unzip.x86_64
[root@web01 /]# unzip wwwroot.zip

壓縮

tar –cvf jpg.tar *.jpg //將目錄裡所有jpg檔案打包成tar.jpg

tar –czf jpg.tar.gz *.jpg //將目錄裡所有jpg檔案打包成jpg.tar後,並且將其用gzip壓縮,生成一 個gzip壓縮過的包,命名為jpg.tar.gz

tar –cjf jpg.tar.bz2 *.jpg //將目錄裡所有jpg檔案打包成jpg.tar後,並且將其用bzip2壓縮,生成乙個bzip2壓縮過的包,命名為jpg.tar.bz2

tar –czf jpg.tar.z *.jpg //將目錄裡所有jpg檔案打包成jpg.tar後,並且將其用compress壓縮,生成乙個umcompress壓縮過的包,命名為jpg.tar.z

解壓tar –xvf file.tar //解壓 tar包

tar -xzvf file.tar.gz //解壓tar.gz

tar -xjvf file.tar.bz2 //解壓 tar.bz2

tar –xzvf file.tar.z //解壓tar.z

unrar e file.rar //解壓rar

unzip file.zip //解壓zip

總結 (1)、*.tar 用 tar –xvf 解壓

(2)、*.gz 用 gzip -d或者gunzip 解壓

(3)、*.tar.gz和*.tgz 用 tar –xzf 解壓

(4)、*.bz2 用 bzip2 -d或者用bunzip2 解壓

(5)、*.tar.bz2用tar –xjf 解壓

(6)、*.z 用 uncompress 解壓

(7)、*.tar.z 用tar –xzf 解壓

(8)、*.rar 用 unrar e解壓

(9)、*.zip 用 unzip 解壓

Centos7 壓縮檔案

壓縮檔案命令 tar 選項與引數 c 建立打包檔案,可搭配 v 來察看過程中被打包的檔名 filename t 察看打包檔案的內容含有哪些檔名,重點在察看 檔名 就是了 x 解打包或解壓縮的功能,可以搭配 c 大寫 在特定目錄解開 特別留意的是,c,t,x 不可同時出現在一串指令列中。z 透過 gz...

centos7 下使用zip壓縮檔案

1 安裝zip unzip應用。yum install zip unzip 2 壓縮和解壓檔案 以下命令均在 home目錄下操作 cd home 進入 home目錄 a 把 home目錄下面的mydata目錄壓縮為mydata.zip zip r mydata.zip mydata 壓縮mydata...

centos7下tar, zip 壓縮與解壓縮檔案

一 tar壓縮與解壓縮檔案 1 tar壓縮檔案 將test file資料夾下面的檔案全部壓縮 tar zcvf test file.tar.gz test file 2 tar解壓縮檔案tar zxvf test.tgz二 zip壓縮與解壓縮檔案 1 把 test 壓縮資料夾為 test.zip 檔...