红联Linux门户
Linux帮助

linux下解压大文件提示error: Zip file too big

发布时间:2016-10-23 11:32:58来源:linux网站作者:Dream~Chaser
在解压10G以上的文件时出现"error: Zip file too big (greater than 4294959102 bytes)"。

解决办法:使用第三方工具7zip来解压。
 
(1)yum安装:
终端下输入:yum –y install p7zip
(2)若p7zip yum源未找到,
wget http://nchc.dl.sourceforge.net/sourceforge/p7zip/p7zip_4.65_src_all.tar.bz2
在安装包所在目录:
tar -xjvf p7zip_4.65_src_all.tar.bz2
cd p7zip_4.65
make && make install
(3)进入zip文件所在文件夹,运行命令:
7za x xxx.zip
注:xxx为zip包文件名。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25313.html