复现
$ unzip test.zip
Archive: test.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 test.zip or
test.zip.zip, and cannot find test.zip.ZIP, period.
原因
unzip默认解压大小小于2G
安装7za
wget --no-cookie --no-check-certificate https://jaist.dl.sourceforge.net/project/p7zip/p7zip/16.02/p7zip_16.02_src_all.tar.bz2
tar -jxvf p7zip_16.02_src_all.tar.bz2
cd p7zip_16.02
sudo make && make install
执行解压命令:
7za x test.zip
原创文章,作者:站长,如若转载,请注明出处:https://wsppx.cn/1391/%e7%bd%91%e7%ab%99%e9%83%a8%e7%bd%b2/

相关推荐
-
gorm set string null一次问题
背景 插入的字段为空的时候,数据中变为null字符串 解决方法 gorm字段默认值为default:null 我这个是list存在数据库中是string,在互转化的时候出现错误,当…
-
centos7 tcp6端口地址无法访问
背景 centos7服务器启动了一个端口8002的服务,再centos7机器上能访问,但是在其他机器上就不能访问,启动tcp标识的服务可以正常访问,所有的tcp6都不能访问 原因 …
-
安裝unraid系統,ip一直获取不到 Cannot find device bond0
系统环境 网卡:i210 unriad系统:6.9.2 u盘:闪迪32G 安装过程 刚开始下载网上的开心版6.9.2,试过几台电脑,都是下面的提示 后面到官网下载手动安装版本,也是…
-
wordpress 时区设置问题,相差8个小时
问题 每次发布新文章的时候,在前端页面都显示8小时前,这明显是时区有问题。 排查问题 排查是否是系统时间的问题 进入到服务器,直接date 排查是否是设置问题 不是系统问题,那就p…
-
docker 安装 rabbitmq
安装代码 登录 默认账号密码 guest/guest 增加root用户 进入容器 增加用户 授权root admin权限 查看所有用户
-
harbor-db restarting (1) seconds ago
环境 centos7.6 harbor-db:v2.3.2 docker:17.12.0-ce 问题复现 宿主机重启后,docker harbor-db总是在restarting,…
-
docker 安装mysql 5.7
之前都在宿主机直接yum install mysql,后面数据迁移都时候,发现不能一下把所有都data迁移,想想还是docker部署挂载data盘好迁移一点 安装命令 修改root…
-
ESXI系列之直通硬盘给黑群晖系统
直通sata接口 直接上命令 开启直通 选择sata控制器,点击切换直通就行,需要重启系统,重启之后就显示为活动 直通给黑群晖 点击添加设备,选择PCI设备即可,重启群晖系统 RD…
-
harbor支持https
概要 由于docker login的地址必须是https才行,除非自己配置/etc/docker/deamon.json,需要重启docker,如果已经有很多docker在运行的情…