我正在尝试从 .7z 文件中提取 GameCube 游戏的 iso,但无法成功。通常,我会在 Windows 中使用 WinRAR,但 Ubuntu 14.04 不是 Windows。
答案1
7zip
非常适合这个并且它与档案管理器集成。
安装
p7zip
(以及一些附加组件以确保您可以打开所有格式)sudo apt-get update sudo apt-get install p7zip p7zip-full p7zip-rar
尝试.7z
再次打开档案。
答案2
您只需要安装 p7zip-full。
$sudo apt-get install p7zip-full
然后使用以下方法提取包:7z x YOUR_FILE.7z
例子:
$ ls
MyDir.7z
$ 7z x MyDir.7z
7-Zip [64] 15.14 : Copyright (c) 1999-2015 Igor Pavlov : 2015-12-31
p7zip Version 15.14.1 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,64 bits,4 CPUs Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz (806E9),ASM,AES-NI)
Scanning the drive for archives:
1 file, 335 bytes (1 KiB)
Extracting archive: MyDir.7z
Path = MyDir.7z
Type = 7z
Physical Size = 335
Headers Size = 231
Method = LZMA2:16
Solid = +
Blocks = 1
Everything is Ok
Folders: 2
Files: 6
Size: 57024
Compressed: 335
$ ls
MyDir MyDir.7z
7zip 中的选项“x”保留原始目录结构。