解压缩时 UNZIP 失败

解压缩时 UNZIP 失败
%> unzip V15679-01_3of3.zip
Archive:  V15679-01_3of3.zip
  End-of-central-directory signature not found.  Either this file is not
  a zipfile, or it constitutes one disk of a multi-part archive.  In the
  latter case the central directory and zipfile comment will be found on
  the last disk(s) of this archive.
unzip:  cannot find zipfile directory in one of V15679-01_3of3.zip or
        V15679-01_3of3.zip.zip, and cannot find V15679-01_3of3.zip.ZIP, period.

下载了zip文件并尝试,但出现了上述错误。

答案1

我认为存档不完整,因为它在下载时被中断,或者最初创建它的人没有正确压缩。它也可能是一组压缩档案的一部分,因此您需要完整的集合来解压缩它们,即

$ unzip archive1.zip archive2.zip archive3.zip 

我会尝试再次获取档案。您还可以查看手册页以获取在解压缩操作失败时提供更多输出的标志-t -v

相关内容