web-dev-qa-db-ja.com

RHEL 5では、yumはパッケージを見つけることができません(python-devel)

職場では、特定のサーバーでRed Hat Enterprise Linux(RHEL)バージョン5を使用する必要があります。私はLinuxの経験がありますが、RHELの経験はあまりありません(DebianとUbuntuの方が多いです)。

Gitosisをインストールしたいのですが、gitosisのEPELパッケージはpython-setuptoolsに依存しています。そしてpython-setuptoolsはpython-develに依存します。

yumはpython-develを見つけることができません。

python-develはEPELに存在しないようです。これにより、おそらくRHEL5で直接サポートされていると思います。 EPELはRHELの一部であるため、提供していないのではないでしょうか。

Pbone.netでRPM検索を確認すると、Centosにpython-develパッケージがあることがわかりました。これも、python-develはRHELによって提供されるべきだと思います。

サーバー上のyum.confファイルには、「distroverpkg = redhat-release」という行を含む[main]エントリがあります。ディレクトリ「yum.repos.d」には、次のリポジトリファイルがあります。epel.repoepel-testing.reporhel-debuginfo.repo

Python-develは「redhat-release」リポジトリにあるべきですか? yum設定に含める必要のある他の公式RHELリポジトリはありますか?

助けてくれてありがとう。


追加情報:コマンドyum repolist allからの出力は次のとおりです。


# yum repolist all
Loaded plugins: rhnplugin, security
repo id                repo name                                  status
epel                   Extra Packages for Enterprise Linux 5 - i3 enabled: 3,423
epel-debuginfo         Extra Packages for Enterprise Linux 5 - i3 disabled
epel-source            Extra Packages for Enterprise Linux 5 - i3 disabled
epel-testing           Extra Packages for Enterprise Linux 5 - Te disabled
epel-testing-debuginfo Extra Packages for Enterprise Linux 5 - Te disabled
epel-testing-source    Extra Packages for Enterprise Linux 5 - Te disabled
rhel-debuginfo         Red Hat Enterprise Linux 5Client - i386 -  disabled
rhel-i386-client-5     Red Hat Enterprise Linux Desktop (v. 5 for enabled: 5,025
repolist: 8,448

このコンピューターがリポジトリとしてrhel-i386-server-5を持っていないように見えるのは私にとって興味深いことです。 python-develはサーバーパッケージと見なされますか?サーバーリポジトリを有効にする方法を教えてもらえますか?

これを有効にするための設定を探しましたが、見つかったのはファイル/etc/yum/pluginconf.d/rhnplugin.confだけでした。このファイルには次のものが含まれています。


[main]
enabled = 1
gpgcheck = 1

[rhel-i386-server-5]
enabled = 1

追加情報を追加するための編集:


# yum install gitosis
Loaded plugins: rhnplugin, security
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package gitosis.noarch 0:0.2-6.20080825git.el5 set to be updated
--> Processing Dependency: python-setuptools for package: gitosis
--> Running transaction check
---> Package python-setuptools.noarch 0:0.6c7-1.el5 set to be updated
--> Processing Dependency: python-devel for package: python-setuptools
--> Finished Dependency Resolution
python-setuptools-0.6c7-1.el5.noarch from epel has depsolving problems
  --> Missing Dependency: python-devel is needed by package python-setuptools-0.6c7-1.el5.noarch (epel)
Error: Missing Dependency: python-devel is needed by package python-setuptools-0.6c7-1.el5.noarch (epel)
 You could try using --skip-broken to work around the problem
 You could try running: package-cleanup --problems
                        package-cleanup --dupes
                        rpm -Va --nofiles --nodigest

リクエストされたので、yum search python | grep -i develの出力:


# yum search python | grep -i devel
TurboGears.noarch : Back-to-front web development in Python
kobo.noarch : Python modules for tools development
nettle-devel.i386 : Development headers for a low-level cryptographic library
postgresql-python.i386 : Development module for Python code to access a
python-cherrypy.noarch : A Pythonic, object-oriented web development framework
python-tools.i386 : A collection of development tools included with Python.
python-tunepimp.i386 : Python bindings for developing programs that will use
wxPython-devel.i386 : Development files for wxPython add-on modules

2
steveha

さて、Red Hatサポートに連絡して、回答を得ました。

Python-develパッケージは、有効にされていないRHELデスクトップワークステーションサブチャネル( "rhel-i386-client-workstation-5")にあります。

デフォルトでは、メインチャネル(「コアコンポーネント」、「rhel-i386-client-5」)は有効になっていますが、サブチャネルは有効になっていません。 Webブラウザーを使用してRedHat Networkアカウントにログインすることにより、システムのレコードをプルアップしてサブチャネルを有効にすることができます。このプロセスについては、このナレッジベースページで説明しています。 http://kbase.redhat.com/faq/docs/DOC-1131

3
steveha

サーバーエディションではなく、RHELデスクトップをインストールしたようです。リポジトリはRHNから含まれています。サーバーの「yumrepolistall」からの出力を確認してください。

rhel-x86_64-server-5 Red Hat Enterprise Linux (v. 5 for 64-bi enabled: 

ただし、python-develパッケージを含める必要があります デスクトップバージョン 。結果は何ですか:

yum search python | grep -i devel
0
hdanniel