13

我在一个新的 RHEL 系统上。

我似乎无法通过 yum install 安装任何软件包。

yum install nmap

当前的回购

ls /etc/yum.repos.d/
google-chrome.repo  redhat.repo         rhel-source.repo

可能出了什么问题?

百胜安装的输出:

$ sudo yum install nmap
[sudo] password for user: 
Loaded plugins: product-id, refresh-packagekit, security, subscription-manager
Updating certificate-based repositories.
Setting up Install Process
No package nmap available.
Error: Nothing to do
4

6 回答 6

11

Red Hat 不使用 /etc/yum.repos.d 目录来存放官方软件包,所以答案不会在那里。它将使用 /etc/yum/pluginconf.d 中的订阅插件。

您提到 RHEL 主机是新的。您需要确保您的订阅有效,否则 yum 将静默失败。

您可以使用该subscription-manager list命令获取有关订阅的信息。

于 2012-10-19T20:10:36.097 回答
10

Centos 已经为你做到了。

在 /etc/yum.repos.d 中创建一个 repo 文件

vi /etc/yum.repos.d/myrepo.repo

然后将其粘贴到此文件中:

[centos]
name=CentOS-7
baseurl=http://ftp.heanet.ie/pub/centos/7/os/x86_64/
enabled=1
gpgcheck=1
gpgkey=http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7

用 wq 保存它!现在运行

yum repolist

检查您是否可以安装任何软件包(例如 nmap)

yum install nmap -y

享受!!!

于 2018-03-26T05:47:02.720 回答
1

尝试使用 yum list 在代表中“搜索”正确的包名称

yum list nmap

我猜正确的包名和安装命令是:

yum install nmap.x86_64

你也可以做一个“yum search somename”

于 2012-09-13T10:37:07.733 回答
1

就我而言,我试图使用 yum 安装 OpenJDK;sudo yum install -y java-1.8.0-openjdk-devel但收到一条错误消息,指出依赖项不可用:

---> Package java-1.8.0-openjdk-headless.x86_64 1:1.8.0.201.b09-1.el6_10 will be installed
--> Processing Dependency: pcsc-lite-devel(x86-64) for package: 1:java-1.8.0-openjdk-headless-1.8.0.201.b09-1.el6_10.x86_64
--> Finished Dependency Resolution
Error: Package: 1:java-1.8.0-openjdk-headless-1.8.0.201.b09-1.el6_10.x86_64 (rhel-6-server-rpms)
           Requires: pcsc-lite-devel(x86-64)
**********************************************************************
yum can be configured to try to resolve such errors by temporarily enabling
disabled repos and searching for missing dependencies.
To enable this functionality please set 'notify_only=0' in /etc/yum/pluginconf.d/search-disabled-repos.conf
**********************************************************************

我按照建议解决了这个问题please set 'notify_only=0' in /etc/yum/pluginconf.d/search-disabled-repos.conf,然后再次运行 yum 命令。这次 yum 加载了一堆 [previously disabled] repos 并搜索了它们,最后报告成功并显示以下消息:

*******************************************************************
Dependency resolving was successful thanks to enabling these repositories:
rhel-6-server-optional-rpms
*******************************************************************

所以没有被忽略的*-devel回购,但这样做仍然有效。为了清除,明确忽略的回购是:ignored_repos=*debug-rpms *source-rpms *beta-rpms

..所以这行得通,但我对这个机制仍然不了解..

于 2019-02-28T14:52:30.407 回答
0

尝试使用安装:

yum install nmap-frontend

它在 Red Hat Enterprise Linux Server 7.7 版(Maipo)上为我工作

您可以使用以下行进行测试:

nmap 25 gmail-smtp-in.l.google.com
于 2020-02-18T13:23:31.193 回答
0

如果您的实验室或任何位置有操作系统映像,您可以在某些 RPMS 上尝试此操作

vim /etc/yum.repos.d/rhel.repo
[rhel]
name=rhel
baseurl=http://172.25.5.25/osimages/rhel7.2_64bit
enabled=1
gpgcheck=0

然后做yum clean all

baseurl 是您的操作系统映像可用的位置。无需订阅,它正在重用您的操作系统映像

于 2017-04-28T09:58:15.610 回答