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

Linux 下,使用unzip解压时,报错:

$ unzip abc.zip

Archive:  abc.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 abc.zip or

abc.zip.zip, and cannot find abc.zip.ZIP, period.

用jar 来解

$ jar xvf abc.zip

  如果出现

jar:Command not found

  要用yum下载

$ yum -y install java-1.6.0-openjdk-devel

安装时间也就两三分钟

安装完毕再次运行

再次运行

$ jar xvf abc.zip

时间: 2024-11-09 20:49:33

Linux 使用unzip解压时报错End-of-central-directory signature not found的相关文章

【菜鸟学Linux】gzip解压报错:gzip: stdin has more than one entry--rest ignored

lz Linux菜鸟一枚,今天想用gzip解压下压缩包,据说Linux默认不支持rar压缩,需要安装组件. so,lz我特意zip压缩了一个文件上传上去解压,记得之前测试的时候都ok的正常解压:tar -zxvf  XXX.zip 不知道今天啥情况..难道是我之前重新搭建过环境的原因,用tar就报错.. 然后lz我多方查证,终于解决了问题,特来分享,不喜勿喷! 解决方法:改用unzip解压:unzip XXX.zip 报错原因:ar命令也是调用了gunzip命令的 [菜鸟学Linux]gzip解

AIX 7.1 jar unzip解压报错问题解决

刚开始使用jar -xvf 进行解压也报错,怀疑jar解压命令有问题.便安装了zip相关包再进行解压还是报错. jar 解压报错jar -xvf aix.ppc64_11gR2_database_1of2.zip inflated: database/stage/Components/oracle.sysman.console.db/11.2.0.1.0/1/DataFiles/filegroup4.jarjava.io.EOFException: Unexpected end of ZLIB

Unzip 解压报错

? $?jar xvf?pcre-8.10.zip?? 如果出现 jar:Command not found 要用yum下载 $?yum -y install java-1.6.0-openjdk-devel 再次运行 $?jar xvf?pcre-8.10.zip

unzip解压3G或者4G以上文件失败的解决方法

Linux下,使用unzip解压时,报错:End-of-central-directory signature not found.  Either this file is nota zipfile, or it constitutes one disk of a multi-part archive.  In thelatter case the central directory and zipfile comment will be found onthe last disk(s) of

Linux没有rar解压命令

使用微软系统的同学都知道rar解压缩软件,它是一个商业的收费软件,那在免费开源的linux系统怎么解压后缀为rar的文件呢,我相信很多同学都是先把rar的文件下载到电脑本地,然后再用7-zip或者winrar 等等解压缩软件解压再压缩为zip的文件,然后上传至服务器上直接使用unzip的命令来解压,呵呵,之前我也是一直这么做,今天就教大家,在linux上安装rar 解压缩命令,以后就不再那么麻烦了. 一.下载 wget http://www.rarlab.com/rar/rarlinux-5.1

Linux各类压缩/解压方法

Linux各类压缩/解压方法——转载: 01-.tar格式 解包:[*******]$  tar xvf FileName.tar  打包:[*******]$  tar cvf FileName.tar DirName(注:tar是打包,不是压缩!) 02-.gz格式  解压1:[*******]$  gunzip FileName.gz  解压2:[*******]$  gzip -d FileName.gz  压 缩:[*******]$  gzip FileName 03-.tar.gz

linux 常用命令 – 解压文件(zip,rar,gz,tar.gz)

Linux下自带了一个unzip的程序可以解压缩文件, 解压命令是:unzip filename.zip 同样也提供了一个zip程序压缩zip文件,命令是 zip filename.zip files 会将files压缩到filename.zip 另外看看你的文件的后缀名,不同的后缀的文件解压和压缩的命令都不一样 总结一下 1.*.tar 用 tar –xvf 解压 2.*.gz 用 gzip -d或者gunzip 解压 3.*.tar.gz和*.tgz 用 tar –xzf 解压 4.*.bz

linux 压缩、解压 {大全}

.tar 解包:tar xvf FileName.tar 打包:tar cvf FileName.tar DirName (注:tar是打包,不是压缩!) --------------- .gz 解压1:gunzip FileName.gz 解压2:gzip -d FileName.gz 压缩:gzip FileName .tar.gz 和 .tgz 解压:tar zxvf FileName.tar.gz 压缩:tar zcvf FileName.tar.gz DirName ---------

Linux压缩、解压文件

对于.tar格式的文件压缩和解压比较常用,今天对于.zip格式的文件用同样的命令无效.真是被自己蠢到了,忽略了后缀格式... 1.对于tar格式文件 压缩: tar –zcvf 压缩完后的名称  被压缩的目录     //tar -zcvf a.tar a 解压: tar –zxvf 压缩完后的名称           // tar -zxvf a.tar 2.对于zip格式文件 压缩: zip filename.zip files 解压: unzip filename.zip 进一步了解,Li