web-dev-qa-db-ja.com

RHEL 6にgitをインストールするにはどうすればよいですか?

私はRHEL6開発サーバーにGitをインストールしようとしています。Ubuntuの経験はありますが、RHELを使用するのはこれが初めてです(私は最近亡くなったLinux Sysadminに記入しようとしている開発者です)。

Magentoのインストールに必要な他のパッケージ用に2つの追加リポジトリ(EPELとIUS)を設定しました。 yum repolistの出力:

[root@box]# yum repolist
Loaded plugins: product-id, security, subscription-manager
Updating certificate-based repositories.
repo id              repo name                                        status
epel                 Extra Packages for Enterprise Linux 6 - x86_64   7,841
ius                  IUS for RHEL 6Server - x86_64                    135

私が読んだことのほとんどは、単純な「yum install git」がEPELを有効にして動作するはずであることを示していますが、私は恐れています

[root@box]# yum install git
Loaded plugins: product-id, security, subscription-manager
Updating certificate-based repositories.
Setting up Install Process
No package git available.
Error: Nothing to do

Git-daemonなども同様です。

これはrepoforgeにある などのgit RPMの数を追跡してきましたが、それらには、終わらないように見える一連の依存関係が必要です。

手動でコンパイルする もいじってみましたが、動作させるためのうさぎの穴はさらに深くなっているようです。

EPELリポジトリからインストールできないという単純な見落としがどこかにあると確信していますが、私はこれはまったくの新人です。ヘルプ/ポインタ/追加のリソースを事前に感謝します。

12
JR.Xyza

実際のディストリビューションのYUMリポジトリに問題があります... yum repolistコマンドの出力に基づいて、「ベース」リポジトリがあるようには見えません。たぶん あなたはそれをダウンロードすることができます 同様に...

[root@Kitteh ~]# yum repolist
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
 * base: xt.lol.net
 * epel: mirror.cogentco.com
 * extras: xt.lol.net
 * update: xt.lol.net
repo id                             repo name                                                                 status
base                                CentOS-6 - Base                                                           6346
epel                                Extra Packages for Enterprise Linux 6 - x86_64                            7858
extras                              CentOS-6 - Extras                                                            4
rpmforge                            Red Hat Enterprise 6 - RPMforge.net - dag                                 4445
update                              CentOS-6 - Updates                                                         665

...そしてGITがベースリポジトリの一部であることの証明...

[root@Kitteh ~]# yum info git
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
 * base: xt.lol.net
 * epel: mirror.cogentco.com
 * extras: xt.lol.net
 * update: xt.lol.net
Installed Packages
Name        : git
Arch        : x86_64
Version     : 1.7.1
Release     : 2.el6_0.1
Size        : 15 M
Repo        : installed
From repo   : anaconda-CentOS-201112091719.x86_64
Summary     : Fast Version Control System
URL         : http://git-scm.com/
License     : GPLv2
Description : Git is a fast, scalable, distributed revision control system with an
            : unusually rich command set that provides both high-level operations
            : and full access to internals.
            : 
            : The git rpm installs the core tools with minimal dependencies.  To
            : install all git packages, including tools for integrating with other
            : SCMs, install the git-all meta-package.
7
ewwhite

これを試して:

# rpm -q git

これが何も返さない場合は、以下を試してください

# yum clean all
# yum install git

また、これを実行して、リポジトリに含まれている/含まれていないものを確認します。

# grep -iE "^exclude|^include" /etc/yum.repos.d/*.repo
/etc/yum.repos.d/epel.repo:exclude=nagios-*
# 

更新:(別名別の方法)

# rpm -ivh http://pkgs.repoforge.org/git/git-1.7.11.3-1.el6.rfx.x86_64.rpm
# 
1
alexus