redhat + 如何从 red-hat 站点下载 rpm

redhat + 如何从 red-hat 站点下载 rpm

我需要从 red-hat 正式站点下载以下 rpm

    kernel-debuginfo-3.10.0-327.10.1.el7.x86_64

是否可以使用以下rpm命令进行下载?

rpm --import http://....

如果是,如何(语法和路径是什么)?

其他方法:

  root@test:~ # yum install --downloadonly --downloaddir=/tmp kernel-debuginfo
  Loaded plugins: product-id, rhnplugin, search-disabled-repos, subscription-manager
  This system is receiving updates from RHN Classic or Red Hat Satellite.
   No package kernel-debuginfo available.
   Error: Nothing to do

 root@test:~ # yumdownloader  kernel-debuginfo
 Loaded plugins: product-id, rhnplugin
 This system is receiving updates from RHN Classic or Red Hat Satellite.
 No Match for argument kernel-debuginfo
 Nothing to download

答案1

如果您有 Redhat 订阅,那么答案将被描述在这个页面

选项 1. 准备(一次性活动):

(RHEL5)
# yum install yum-downloadonly

(RHEL6+)
# yum install yum-plugin-downloadonly

方案一、实际使用情况:

# yum install --downloadonly --downloaddir=<directory> <package>

选项 2. 准备工作:

# yum install yum-utils

方案2.实际使用情况:

# yumdownloader <package>

如果您没有订阅,您应该考虑 Centos 作为替代选择。

答案2

很简单的!

您可以使用 YUM 或 DNF 下载并安装 RPM。

例子:

答案3

当您明确询问软件包时-debuginfo,请参阅经过验证的 RedHat 知识库文章 如何下载或安装 RHEL 系统的 debuginfo 包? 其中还包含一些有关如何检查 RHN 订阅或订阅管理器频道的信息。

相关内容