如何解压7z后缀的文件在linux环境下…

1.download p7zip

src

rpm

2.install 7z

#m1: apt/yum

apt-get install -y p7zip
yum install -y p7zip

#m2:src

tar jxvf p7zip_9.20.1_src_all.tar.bz2
cd p7zip_9.20.1
make
make install

#m3:binary

tar xjvf p7zip_9.20.1_x86_linux_bin.tar.bz2
cd p7zip_9.20.1
sh install.sh

3. unzip 7z 7az

7z a yajiu.7z yajiu.jpg yajiu.png   //压缩
7z x yajiu.7z    //解压

reference