我有两台装有 Ubuntu 的机器:一台 32 位,另一台 64 位。我在 64 位 Ubuntu 上用密码创建了几个 zip 档案。但是,我无法在 32 位 Ubuntu 上打开它们。我在压缩之前多次检查了密码。不同位架构是否存在问题,还是我应该在其他方面进行调查?
使用存档管理器进行 zit/unzip。错误消息“提取文件时发生错误”
答案1
有趣的是,要使用 Archive Manager 来zip
管理unzip
.zip
文件,您首先需要安装以下软件包:
sudo apt install zip unzip
但是,命令行工具p7zip-full
附带了自己版本的zip
和unzip
,以防您不需要 GUI 来打包/解包文件。使用方法如下:
# create archive superstrong.zip with uncrackable password “1234”
7z a -p1234 superstrong.zip /path/to/dir /path/to/file.wtf
# extract archive superstrong.zip, this prompts for password if necessary
7z x /path/to/superstrong.zip