【小技巧】樹莓派 unzip 解壓報錯: End-of-central-directory signature not found.

解壓縮opencv

	$ unzip opencv.zip
	$ unzip opencv_contrib.zip

解壓報錯:

		Archive:  opencv.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

解決辦法:

jar xvf opencv.zip進行解壓

文件大小爲 2.2G,可能是unzip設置了這個限制吧。在網上查到要用jar來解

jar xvf trunk.zip

如果出現

jar:Command not found

要用yum下載

yum -y install java-1.6.0-openjdk-devel

再次運行

jar xvf trunk.zip

就能成功,看來,unzip侷限蠻大的呀。


參考資料

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章