반응형
CentOS에서 git을 설치하기 위해 Fedora와 마찬가지로 다음과 같이 할 수 있다.
yum install git
하지만 다음과 같은 에러에 직면할 수 있다.
[root@cushion ~]# yum install git
Loaded plugins: fastestmirror
Determining fastest mirrors
* base: www.ftp.ne.jp
* extras: www.ftp.ne.jp
* updates: www.ftp.ne.jp
base
base/primary
base
extras
extras/primary_db
updates
updates/primary_db
Setting up Install Process
No package git available.
Nothing to do
[root@cushion ~]#
등록된 yum repository에 git이 없는 경우에 발생한다.
이 경우 다음과 같이 repository를 등록한다.
rpm -Uvh http://repo.webtatic.com/yum/centos/5/latest.rpm
그리고 다음과 같이 yum을 실행한다.
yum install --enablerepo=webtatic git-all
완료 메시지를 본다면 성공한 것이다.
'리눅스 > 기타' 카테고리의 다른 글
리눅스 디렉토리 용량 확인 (0) | 2014.11.23 |
---|---|
사이트 이전 (0) | 2014.11.23 |
named.caching-nameserver.conf 설정 (0) | 2014.11.23 |
ffmpeg 설치 (0) | 2014.11.23 |
apm제거 (0) | 2014.11.23 |