在 Ubuntu 上解压档案时出现问题

在 Ubuntu 上解压档案时出现问题

我有两台装有 Ubuntu 的机器:一台 32 位,另一台 64 位。我在 64 位 Ubuntu 上用密码创建了几个 zip 档案。但是,我无法在 32 位 Ubuntu 上打开它们。我在压缩之前多次检查了密码。不同位架构是否存在问题,还是我应该在其他方面进行调查?

使用存档管理器进行 zit/unzip。错误消息“提取文件时发生错误”

答案1

有趣的是,要使用 Archive Manager 来zip管理unzip .zip文件,您首先需要安装以下软件包:

sudo apt install zip unzip

但是,命令行工具p7zip-full附带了自己版本的zipunzip,以防您不需要 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 

相关内容