Ubuntu 实用程序用于解压缩 .azip?

Ubuntu 实用程序用于解压缩 .azip?

我刚刚遇到一个以 结尾的文件,.azip我需要解压它。在谷歌上搜索后,我发现了以下内容:

https://azip.sourceforge.io/
https://sourceforge.net/projects/azip/
https://sourceforge.net/projects/azip/files/

看来这是一个仅适用于 Windows 的程序。是否有可以解压 .azip 文件的 Ubuntu 实用程序?

我应该提到,我尝试过解压,但它不起作用,错误如下:

$ unzip my_file.azip

Archive:  my_file.azip
  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 my_file.azip or
        my_file.azip.zip, and cannot find my_file.azip.ZIP, period.

答案1

我认为您找到的“AZip”实用程序(https://azip.sourceforge.io/) 恰好被这样称呼。它只是一个 Zip 读取器/写入器。#redherring :-o

同样,Google Play 商店中也有一个同名的应用程序。

.azip 文件的来源是什么?我在这里找到了 .azip 文件格式的提及https://www.agrisatwebgis.com/media/manuals/AgriSatwebGIS_BASIC_USER_GUIDE.pdf

Linux 文件命令的输出是什么?这应该可以帮助您识别文件。例如

 # more hello.txt
 Hello World
 # file hello.*
 hello.txt:    ASCII text
 hello.txt.gz: gzip compressed data, was "hello.txt", last modified: Tue Feb  9 22:20:02 2021, from Unix, original size modulo 2^32 12
 hello.zip:    Zip archive data, at least v1.0 to extract

希望这对您有帮助。问候,安迪

相关内容