CentOS 的使用 —— 各种格式文件的解压

.7z

wget http://nchc.dl.sourceforge.net/sourceforge/p7zip/p7zip_4.65_src_all.tar.bz2

tar -jxvf p7zip_4.65_src_all.tar.bz2

cd p7zip_4.65

make && make install 

如果输出如下信息,则说明安装成功:

./install.sh /usr/local/bin /usr/local/lib/p7zip /usr/local/man /usr/local/share/doc/p7zip 
- installing /usr/local/bin/7za - installing /usr/local/man/man1/7z.1 - installing /usr/local/man/man1/7za.1 - installing /usr/local/man/man1/7zr.1 - installing /usr/local/share/doc/p7zip/README - installing /usr/local/share/doc/p7zip/ChangeLog - installing HTML help in /usr/local/share/doc/p7zip/DOCS

这时如果显示乱码,请执行命令:

export LANG=zh_CN.GBK

解压命令:

  • 7za e **.7z:解压到当前目录,不保留原来的目录结构
  • 7za x **.7z:解压到当前目录下,但保留原来的目录结构

你可能感兴趣的:(CentOS 的使用 —— 各种格式文件的解压)