69

I am getting this error while unzipping a file how unzip it

c0mrad3@dinp:~/output/zip$ unzip 00000018.zip 
Archive:  00000018.zip
   skipping: secret.txt              need PK compat. v5.1 (can do v4.6)
Wilf
  • 29,694
  • 16
  • 106
  • 164
Tummala Dhanvi
  • 1,721
  • 3
  • 20
  • 34

1 Answers1

94

Try installing 7z sudo apt-get install p7zip-full and then extract the file with it 7z x 00000018.zip

0x2b3bfa0
  • 8,620
  • 5
  • 38
  • 59
  • 2
    +1 for this, thanks for the command some reason p7zip -d doesn't like my .zip file. after using 7z x [file], it prompted me to enter the password required and extracted the file nicely. – esefarm Jul 06 '16 at 12:29
  • 7
    +1 i used `7z x datafile.zip -aoa -p$3CR37` with success. Argument `-p******` is the password, `-aoa` allows extraction over any existing local files. – roblogic Nov 04 '16 at 03:45
  • 7z is it, what I needed to unzip my password protected .zip...! – benzkji Oct 16 '20 at 12:09