How to unzip very large files
Posted on March 18, 2008 in How-to
Some windows programs use a compression for larger files that is not compatible with the linux unzip command. Resulting in the following error:
need PK compat. v4.5 (can do v2.1)
There is a special program for handling these large files: p7zip
Run these commands to install and run:
$ curl -o p7zip_4.20_src.tar.bz2 http://internap.dl.sourceforge.net/sourceforge/p7zip/p7zip_4.20_src.tar.bz2
$ bunzip2 p7zip_4.20_src.tar.bz2 $ tar xvf p7zip_4.20_src.tar $ cd p7zip_4.20_src $ make $ make install $ 7za x largefilename.zip
This saved my ass... let me know how it works for you.