.tar.gz .tar.bz2要解壓很簡單 : .tar.gz 格式解壓為 tar -zxvf xx.tar.gz .tar.bz2 格式解壓為 tar -jxvf xx.tar.bz2 .tar.xz .tar.lz復(fù)雜一點(diǎn): .tar.xz的解壓方法: xz -d mpfr-3.1.2.tar.xz 會(huì)產(chǎn)生一個(gè)mpfr-3.1.2.tar 文件,,再執(zhí)行 tar -xvf mpfr-3.1.2.tar .tar.lz的解壓方法: 該格式需要使用Lzip或Lunzip解壓,,CentOS 6.5默認(rèn)不安裝此程序。 [root@localhost opt]
-bash: lzip: command not found
[root@localhost opt]
-bash: lunzip: command not found
[root@localhost opt]
語法:lzip -d file.lz 更多請參考:http://www./lzip/manual/lzip_manual.html#Examples 下載: http://www./lzip/ http://download.savannah./releases/lzip/
|