Linux 使用unzip解压时报错End-of-central-directory signature not found

问题:unzip 综合.zip解压文件夹报错如下  

Archive: 综合.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. note: 综合.zip may be a plain executable, not an archive unzip: cannot find zipfile directory in one of 综合.zip or 综合.zip.zip, and cannot find 综合.zip.ZIP, period.

解决方法:

应该是 unzip 设置了这个解压的文件大小限制了。在网上查到可以用 jar 来解压
 

jar xvf 综合.zip

特殊情况:

如果出现下面这个问题,说明没有安装jar这个包,
 

jar:Command not found

 要用yum下载

yum -y install java-1.6.0-openjdk-devel

再次运行

jar xvf 综合.zip

相关推荐

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-06-06 04:10:05       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-06-06 04:10:05       100 阅读
  3. 在Django里面运行非项目文件

    2024-06-06 04:10:05       82 阅读
  4. Python语言-面向对象

    2024-06-06 04:10:05       91 阅读

热门阅读

  1. oracle sql--计算某一日期到当前日期的间隔天数

    2024-06-06 04:10:05       30 阅读
  2. docker mqqt 安装

    2024-06-06 04:10:05       24 阅读
  3. USB - ACK、NAK和STALL的含义

    2024-06-06 04:10:05       36 阅读
  4. conda环境里安装ffmpeg

    2024-06-06 04:10:05       25 阅读
  5. 在本地局域网的 Ubuntu 16.04 主机安装 GitLab 服务

    2024-06-06 04:10:05       25 阅读
  6. 正则表达式 0.1v

    2024-06-06 04:10:05       25 阅读
  7. WHAT - 容器化系列(二)- docker

    2024-06-06 04:10:05       28 阅读
  8. Shell正则表达式与文本处理器

    2024-06-06 04:10:05       22 阅读
  9. 从0开发一个Chrome插件:创建第一个Chrome插件

    2024-06-06 04:10:05       28 阅读