如何通过终端安装 7zip 来提取 rar 文件?
答案1
我不知道你为什么特别喜欢用 7-zip 的二进制文件来提取 RAR,但我们还是来吧:
要使用 unrar 解压文件:
sudo apt-get install unrar-free
unrar e some.rar
要使用 7-zip 提取 rar 文件:
sudo apt-get install p7zip-full
7z x some.rar
e
并且x
明显意味着提取。
答案2
您可以使用 p7zip。您可以使用命令安装 p7Zip sudo apt-get install p7zip
:。
要提取 RAR 档案,您还需要安装包“p7zip-rar”。
使用以下方式安装:sudo apt-get install p7zip-rar
或者你也可以用单个命令完成:sudo apt-get install p7zip p7zip-rar
阅读 p7zip 手册以获取更多信息:man p7zip
答案3
使用以下命令安装 7Zip:
$ sudo apt-get install p7zip-full
使用 7zip 提取文件:
$ 7z e example.zip
(或者使用x
选项而不是来e
保留文件路径)。
使用 7zip 压缩文件:
$ 7z a compress.zip
如需了解更多信息,请访问参考