Chinaunix首页 | 论坛 | 博客
  • 博客访问: 64673
  • 博文数量: 8
  • 博客积分: 214
  • 博客等级: 二等列兵
  • 技术积分: 100
  • 用 户 组: 普通用户
  • 注册时间: 2011-11-25 17:03
文章分类

全部博文(8)

文章存档

2012年(3)

2011年(5)

我的朋友

分类: LINUX

2011-12-07 16:31:32

  7z is one opensource software.It's very simple to install and use the 7z on windows.
But it's complicated to install and use it on linux.
 
1.download the source
You can download the 7z source code from the site
wget
 
2.uncompress,compile and install

(1) If you use the source code to install, then produce the executable binary file called 7za.
# tar jxvf p7zip_9.13_src_all.tar.bz2
# cd p7zip_9.13
# make && make install
# ./install.sh
ldconfig

(2) You can downloade the bin version from
It's unnesscessary to compile it.You only can run the install.sh.
 
# cd /software/7z/
wget
 
# tar jxvf /software/7z/p7zip_4.48_x86_linux_bin.tar.bz2
# cd /software/7z/p7zip_4.48
# sh ./install.sh
 
then produce the executable binary file called 7z, not 7za.
 
3.how to use the 7z to put some small 7z files into one big file gether
If you are many files,such as abc.7z.001,abc.7z.002,abc.7z.003,abc.7z.004

# 7z x abc.7z.001

then It'll put the four files into one big file together automatically.
 
 
--the end.
 
 
阅读(1205) | 评论(1) | 转发(1) |
给主人留下些什么吧!~~

布毫铯2011-12-08 00:19:47

恩,很小巧的压缩软件!