.tar.gz .tar.bz2要解壓很簡單 :
.tar.gz 格式解壓爲 tar -zxvf xx.tar.gz
.tar.bz2 格式解壓爲 tar -jxvf xx.tar.bz2shell
.tar.xz .tar.lz複雜一點:
.tar.xz的解壓方法:
xz -d mpfr-3.1.2.tar.xz
會產生一個mpfr-3.1.2.tar 文件,再執行
tar -xvf mpfr-3.1.2.tarbash
.tar.lz的解壓方法:
該格式須要使用Lzip或Lunzip解壓,CentOS 6.5默認不安裝此程序。spa
[root@localhost opt]# lzip-bash: lzip: command not found [root@localhost opt]# lunzip-bash: lunzip: command not found [root@localhost opt]#