I recently downloaded a large number of GIS data files from a government agency to a file server and need to unzip all of them via the command line. However, unzip filename.zip is returning "Unsupported compression method 14". What does this mean? How can I extract the files?

link|improve this question
feedback

migrated from serverfault.com Oct 27 '11 at 20:36

This question came from our site for system administrators and desktop support professionals.

1 Answer

up vote 7 down vote accepted

These files were compressed using the LZMA algorithm (possibly using WinZip). LZMA archives are not supported by the unzip command. I found that I could extract these files using 7z instead, as follows:

  1. Install p7zip (from source or package manager)
  2. 7z x filename.zip
link|improve this answer
WinZip specific compression method codes are available here. – jscott Sep 30 '11 at 0:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.