Centos

Epel Repo 已安裝,但未找到所需的軟體包

  • January 24, 2019

我有 epel repo 並安裝了它。當我想確保它已經安裝時,它顯示“包 epel-release-6-8.noarch 已安裝”。

[root@static ~]# rpm -ivh epel-release-6-8.noarch.rpm
Preparing...                ########################################### [100%]
   package epel-release-6-8.noarch is already installed

但是我不能安裝一些放在這個儲存庫中的包,比如 unrar rar aria2c

[root@static ~]# yum install rar unrar
Loaded plugins: fastestmirror, refresh-packagekit
Setting up Install Process
Loading mirror speeds from cached hostfile
* base: ftp.antilo.de
* epel: mirror.wiuwiu.de
* extras: mirror.ratiokontakt.de
* updates: mirror.ratiokontakt.de
No package rar available.
No package unrar available.
Error: Nothing to do

我該怎麼辦?是centos6.9

您正在尋找的軟體包在 EPEL 中不可用(檢查以 ‘a’ 、‘r’‘u’開頭的軟體包列表)。的許可證不適合 EPEL,RAR 的許可證也是如此;很好,但不是EPEL 6的一部分。unrar``aria2

在 negativo17.org 的這個 repo 中找到它,這對我有用:

sudo wget -O /etc/yum.repos.d/epel-rar.repo https://negativo17.org/repos/epel-rar.repo
sudo yum update
sudo yum install rar

引用自:https://unix.stackexchange.com/questions/409406