從網(wǎng)絡(luò)上下載到的源碼包, 最多見的是 .tar.gz .tar.bz2包, 還有1部份是 .tar.xz .tar.lz的包。
有人說(shuō) .tar.xz 是緊縮率之王,但從下圖看.tar.lz的緊縮率更高1些:
.tar.gz .tar.bz2要解壓很簡(jiǎn)單 :
.tar.gz 格式解壓為 tar -zxvf xx.tar.gz
.tar.bz2 格式解壓為 tar -jxvf xx.tar.bz2
.tar.xz .tar.lz復(fù)雜1點(diǎn):
.tar.xz的解壓方法:
xz -d mpfr⑶.1.2.tar.xz
會(huì)產(chǎn)生1個(gè)mpfr⑶.1.2.tar 文件,再履行
tar -xvf mpfr⑶.1.2.tar
.tar.lz的解壓方法:
該格式需要使用Lzip或Lunzip解壓,CentOS 6.5默許不安裝此程序。
[root@localhost opt]# lzip
-bash: lzip: command not found
[root@localhost opt]# lunzip
-bash: lunzip: command not found
[root@localhost opt]#
語(yǔ)法:lzip -d file.lz
更多請(qǐng)參考:http://www.nongnu.org/lzip/manual/lzip_manual.html#Examples
下載:
http://www.nongnu.org/lzip/
http://download.savannah.gnu.org/releases/lzip/