linux壓縮和解壓命令總結
一、tar.gz
tar -xzvf
二、tar.bz2
tar.bz2 解壓命令
bzip2 -d gcc-4.1.0.tar.bz2
—上面解壓完之後執行下面的命令。執行成功後,會解壓生成一個.tar的壓縮包檔案。
接下來就是使用tar命令解壓了。
tar -xvf gcc-4.1.0.tar 或 tar -xvf *.tar
解完之後會出現多一個資料夾 gcc-4.1.0
注:因為是gz的,所以要加上z。純粹的.tar就不需要加上z。所以是tar -xvf
遇到的奇怪問題:
tar -xvfz nagios-3.5.0.tar.gz
報錯:
tar: z: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
改為:tar -xzvf 則解壓成功。只不過是z的順序換了一下,沒有換到最後。
有些人遇到這種問題是,因為z區分大小寫。有人寫成大寫Z了。
http://www.linuxdiyf.com/viewarticle.php?id=202439
壓縮一個目錄或檔案
tar -cf 壓縮後檔名稱 要壓縮的物件
tar -cf 2014-2-14.tar www.xeshh.com/
在執行過程中,報錯:
tar: www.xeshh.com/caches/error_log.php: file changed as we read it
-c表示crate,建立壓縮包。f表示後面的引數接檔名,如果解壓,則表示要解壓的檔案。如果壓縮,則表示壓縮後的檔名稱。
把一個檔案解壓到當前目錄
tar -xzvf /var/www/php-5.5.18.tar.gz
會把/var/www/php-5.5.18.tar.gz解壓到當前目錄來
三、解壓 zip字尾的壓縮包
unzip xx.zip -d 解壓到這個目錄去
我之前使用tar命令來解壓zip字尾的壓縮包。會報錯的:
gzip: stdin has more than one entry–rest ignored
tar: Child returned status 2
tar: 由於前面延遲的錯誤而退出
網上是這樣解釋:
原來tar也是間接呼叫了gzip,而gzip的使用是有限制的:Files created by zip can be uncompressed by gzip only if they have a single member compressed with the `deflation` method.也就是說單檔案用deflation壓縮的包才可以用gzip解壓,好在有workaround —- unzip
相關文章
- linux壓縮和解壓縮命令整理Linux
- linux檔案壓縮和解壓命令Linux
- 【Linux基礎】壓縮和解壓Linux
- 『學了就忘』Linux基礎命令 — 32、壓縮和解壓縮相關命令Linux
- Linux中檔案的壓縮和解壓縮Linux
- linux下壓縮解壓縮命令Linux
- 檔案壓縮和解壓縮
- Python實現壓縮和解壓縮Python
- linux下壓縮、解壓命令大全Linux
- pigz更快的壓縮和解壓工具
- Linux 常用的壓縮與解壓縮命令詳解Linux
- Linux下的tar壓縮解壓縮命令詳解Linux
- 常用壓縮命令彙總
- Linux下解壓命令、壓縮命令大全,詳細教程Linux
- linux命令系列-zip(壓縮打包)Linux
- linux常用壓縮解壓複製下載命令Linux
- Linux壓縮解壓Linux
- Linux下lz4解壓縮命令小結Linux
- zip壓縮檔案處理方案(Zip4j壓縮和解壓)
- Linux常用命令之檔案壓縮與解壓縮命令詳解Linux
- linux分卷壓縮解壓Linux
- Linux tar分卷壓縮與解壓縮Linux
- Linux下如何安裝、壓縮、解壓軟體包?常用命令彙總!Linux
- Linux打包壓縮解壓工具Linux
- linux 高效壓縮工具之xz的壓縮解壓使用Linux
- Linux命令:XZ解壓tar.xz字尾的壓縮包Linux
- Linux之壓縮Linux
- 強大且易於使用的壓縮和解壓縮軟體:Keka for MacMac
- linux中常見的打包壓縮命令——tar、jarLinuxJAR
- 常見壓縮演算法總結演算法
- CentOS中zip壓縮和unzip解壓縮命令詳解CentOS
- linux 下面壓縮、解壓.rar檔案Linux
- Nginx網路壓縮 CSS壓縮 圖片壓縮 JSON壓縮NginxCSSJSON
- Linux 檔案壓縮Linux
- 壓縮命令tar詳解
- Ubuntu 壓縮檔案命令Ubuntu
- 壓縮或解壓檔案用的Linux命令?linux開發入門與實戰Linux
- Linux下檔案的壓縮與解壓Linux
- linux 下壓縮與解壓資料夾Linux