如何在 Fedora 23 中打开 .rar 文件

如何在 Fedora 23 中打开 .rar 文件

我使用的是 Fedora 23 64 位。我下载了一些.rar文件。

经过谷歌搜索后,我找到了建议使用unrar它们可以打开的解决方案。

但我无法安装unrar。我在谷歌上搜索安装后尝试了以下步骤,但失败了。

解决方案 1:

免费发布:

su -c 'yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm'

对于非自由版本:

su -c 'yum localinstall --nogpgcheck http://download1.rpmfusion.org/nonfree`/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm'`

安装unrar

在终端中运行以下命令,并在出现提示时输入用户密码。

sudo yum install unrar

解决方案 2:

# wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
# rpm -Uvh rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm

yum install unrar

但什么都不起作用。我的系统是最新的。

如何.rar在 Fedora 中打开文件?

答案1

安装该unar包。

$ dnf info unar
...
Name        : unar
Arch        : x86_64
Epoch       : 0
Version     : 1.10.1
Release     : 1.fc24
Size        : 4.6 M
Repo        : @System
From repo   : updates
Summary     : Multi-format extractor
URL         : http://unarchiver.c3.cx/commandline
License     : LGPLv2+
Description : The command-line utilities lsar and unar are capable of listing
            : and extracting files respectively in several formats including
            : RARv3. unar can serve as a free and open source replacement of
            : unrar.
$ sudo dnf install unar

档案管理器(GUI 应用程序)将能够打开.rar文件。

答案2

.rar 是 Winrar 用来压缩文件的扩展名,它们类似于 Zip 文件,但格式不同。许多其他程序都可以解压缩它,您应该从这里下载免费的 7-Zip,它是最好的程序之一http://www.7-zip.org/download.html,选择你的操作系统版本 Fedora,安装并使用它来解压你的文件

答案3

Fedora 25 Xfce:

sudo dnf install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
sudo dnf install unrar

相关内容