Chinaunix首页 | 论坛 | 博客
  • 博客访问: 37301
  • 博文数量: 11
  • 博客积分: 83
  • 博客等级: 民兵
  • 技术积分: 75
  • 用 户 组: 普通用户
  • 注册时间: 2011-12-08 00:11
文章分类
文章存档

2012年(2)

2011年(9)

最近访客

分类:

2011-12-08 00:19:17

  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.
 
 
阅读(869) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~