web-dev-qa-db-ja.com

RHELに何もyumインストールできません

私は新しいRHELシステムを使用しています。

Yuminstallを介してパッケージをインストールできないようです。

yum install nmap

の現在のリポジトリ

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

何がうまくいかない可能性がありますか?

YUMインストールの出力:

$ 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
7
Prakash Raman

Red Hatは公式パッケージに/etc/yum.repos.dディレクトリを使用しないため、答えはそこにありません。 /etc/yum/pluginconf.dに配置されたサブスクリプションプラグインを使用します。

RHELホストが新しいとおっしゃいました。サブスクリプションが有効であることを確認する必要があります。そうしないと、yumはサイレントに失敗します。

subscription-manager listコマンドを使用して、サブスクリプションに関する情報を取得できます。

9
PentheusLennuye

Yum listを使用して、担当者で正しいパッケージ名を「検索」してみてください

yum list nmap

正しいパッケージ名とインストールコマンドは次のとおりです。

yum install nmap.x86_64

「yumsearchsomename」を実行することもできます

1
Andy Thompson

Centosがあなたに代わってやってくれました。

/etc/yum.repos.dにリポジトリファイルを作成します。

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

楽しい!!!

0
erTugRul

ラボまたは任意の場所にOSイメージがある場合は、いくつかの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は、OSイメージを利用できる場所です。サブスクリプションは必要ありません、それはあなたのOSイメージを再利用しています

0
Vijay S B

私の場合、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は一連の[以前は無効にされた]リポジトリをロードして検索し、最終的に成功とこのメッセージを報告しました。

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

したがって、無視された*-develリポジトリはありませんでしたが、それでもこれを実行することは機能しました。クリアランスの場合、明示的に無視されるリポジトリは次のとおりです。ignored_repos=*debug-rpms *source-rpms *beta-rpms

..それはうまくいきましたが、私はまだこれの仕組みについて賢明ではありません。

0
tplive