Ubuntu – Extracting zip file fails giving error need PK compat. v5.1

11.10extractzip

I have a password protected zip file which was created in Windows. When I am trying to extract the same file under Ubuntu I get the error need PK compat. v5.1 (can do v4.6). Any idea how to proceed?

Best Answer

According to this thread you can use 7z for this. First install p7zip-full package with:

sudo apt-get install p7zip-full

Then either use the GUI or extract the archive with this command:

7z e /path/to/file

or

7z x /path/to/file

(second one preserves directory structure).