在工作中,我需要在一台特定的服务器上使用 Red Hat Enterprise Linux (RHEL) 版本 5。我在 Linux 方面经验丰富,但在 RHEL 方面经验不多(在 Debian 和 Ubuntu 方面更多)。
我想安装gitosis,但是gitosis的EPEL包依赖于python-setuptools;而 python-setuptools 又依赖于 python-devel。
yum 找不到 python-devel。
EPEL 中似乎不存在 python-devel。这让我相信它可能直接在 RHEL 5 中得到支持;也许 EPEL 不提供它是因为它是 RHEL 的一部分?
检查 pbone.net 上的 RPM 搜索,我确实发现 Centos 有一个 python-devel 包,这再次让我认为 python-devel 应该由 RHEL 提供。
服务器上的 yum.conf 文件有一个 [main] 条目,其中包含“distroverpkg=redhat-release”行。目录“yum.repos.d”有这些存储库文件: epel.repo epel-testing.repo rhel-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 作为 repo。算不算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
好的,我们联系了红帽支持并得到了答复。
python-devel 包位于未启用的 RHEL 桌面工作站子频道(“rhel-i386-client-workstation-5”)中。
默认情况下,主频道(“核心组件”,“rhel-i386-client-5”)已启用,但没有子频道。通过使用 Web 浏览器并登录到您的 Red Hat Network 帐户,您可以为您的系统提取记录并启用子频道。此知识库页面中描述了此过程:http://kbase.redhat.com/faq/docs/DOC-11313
看来您安装的是 RHEL 桌面版,而不是服务器版。存储库包含在 RHN 中。检查我服务器中“yum repolist all”的输出:
但是,python-devel 包必须包含在 Desktop 版本中。结果是什么: