Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trying to install GIT on CentOS 5 and a little lost

I am a little over my head with this but I guess you have to start somewhere. I would like to use GIT on my 1and1 dedicated server.

From what I have read searching Google I had to create a file named: epel.repo which has this in it:

[epel]
name=Extra Packages for Enterprise Linux 5 - $basearch
#baseurl=http://download.fedoraproject.org/pub/epel/5/$basearch
mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-5&arch=$basearch
failovermethod=priority
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL

[epel-debuginfo]
name=Extra Packages for Enterprise Linux 5 - $basearch - Debug
#baseurl=http://download.fedoraproject.org/pub/epel/5/$basearch/debug
mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-debug-5&arch=$basearch
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL
gpgcheck=1

[epel-source]
name=Extra Packages for Enterprise Linux 5 - $basearch - Source
#baseurl=http://download.fedoraproject.org/pub/epel/5/SRPMS
mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-source-5&arch=$basearch
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL
gpgcheck=1

And place it on this directory: /etc/yum.repos.d/

That worked just fine but i'm getting a message that reads:

GPG key retrieval failed: [Errno 5] OSError: [Errno 2] No such file or directory: '/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL'

IS there something that I missed in doing like add another file in that directory specified?

like image 320
TikaL13 Avatar asked Nov 09 '11 02:11

TikaL13


People also ask

Do we need to install Git?

Before you start using Git, you have to make it available on your computer. Even if it's already installed, it's probably a good idea to update to the latest version. You can either install it as a package or via another installer, or download the source code and compile it yourself.


2 Answers

You can solve this error by creating File named "" under "/etc/pki/rpm-gpg/".

Go into rpm-gpg directory

cd /etc/pki/rpm-gpg/

Download GPG KEYS from https://fedoraproject.org/keys

wget https://fedoraproject.org/static/217521F6.txt

Rename to "217521F6.txt" to "RPM-GPG-KEY-EPEL"

cp 217521F6.txt RPM-GPG-KEY-EPEL

Remove "217521F6.txt" because we don't need in that file anymore

rm 217521F6.txt

If you want you can remove prefix lines from the file by vim and :wq (:Write and Quit)

vim RPM-GPG-KEY-EPEL

Try again installing git git-daemon

yum install git git-daemon

I believe, these will solve given error.

like image 150
Gaurang Jadia Avatar answered Sep 22 '22 23:09

Gaurang Jadia


Less condescending version of answer #1: The epel page linked has an rpm which will magically do the setup for you. I am using CentOS 5.8, so I grabbed the one for Enterprise Linux 5, EPEL5. Some windows managers will just take care of the install for you. Mine did. If you must, wget the rpm and then install it with rpm -ivh filename. http://fedoraproject.org/wiki/EPEL#How_can_I_use_these_extra_packages.3F

like image 44
Rokujolady Avatar answered Sep 21 '22 23:09

Rokujolady