Setting up Group Process
Setting up repositories
not using ftp, http[s], or file for repos, skipping - 4 is not a valid release or hasnt been released yet
위와 같은 에러가 뜨거나
Cannot find a valid baseurl for repo: update
Error: Cannot find a valid baseurl for repo: update
첫번째 방법은
[root@localhost ~]# vi /etc/yum.repos.d/CentOS-Base.repo
파일을 열어서
mirrorlist를 주석처리 하고
baseurl을 아래와 같이 변경해준다.
32비트
baseurl=http://vault.centos.org/4.3/os/i386/
64비트
baseurl=http://vault.centos.org/4.3/os/x86_64/
[base], [update], [addons], [extras], [centosplus], [contrib] 모두 수정
두번째 방법은
/etc/yum.repo.d/CentOS-Base.repo 파일의 이름을 변경해 준 후에 CentOS에서 제공하는 repo파일을 받는것
[root@localhost ~]# mv /etc/yum.repo.d/CentOS-Base.repo /etc/yum.repo.d/CentOS-Base.repo.bak
[root@localhost ~]# wget http://vault.centos.org/4.9/CentOS-Base.repo -O /etc/yum.repo.d/CentOS-Base.repo
후에 혹시나 모르니 캐시 파일을 삭제
[root@localhost ~]# rm -rf /var/cache/yum/*
'Linux' 카테고리의 다른 글
Note that the MySQL client library is not bundled anymore! (0) | 2014.05.27 |
---|---|
soft raid 디스크 미러링 (0) | 2014.05.21 |
php 컴파일 에러 /usr/bin/ld: cannot find -lltdl (0) | 2014.03.13 |
Cannot send session cache limiter - headers already sent (0) | 2014.03.10 |
압축된 백업파일에서 특정 디렉토리만 풀기 (0) | 2014.02.25 |