前端之家收集整理的这篇文章主要介绍了
centos 更改yum 源,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
centos-5.8 yum源
yum.conf
[main]
cachedir=/var/cache/yum
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
distroverpkg=redhat-release
tolerant=1
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
bugtracker_url=http://bugs.centos.org/yum5bug
Metadata_expire=1h
installonly_limit = 5
CentOS-Base.repo
- vi /etc/yum.repos.d/CentOS-Base.repo
[base]
name=CentOS-$releasever - Base
baseurl=http://mirrors.chinacache.com/centos/$releasever/os/$basearch/
gpgcheck=0
gpgkey=http://mirrors.chinacache.com/RPM-GPG-KEY-CentOS-5
[updates]
name=CentOS-$releasever - Updates
baseurl=http://mirrors.chinacache.com/centos/$releasever/updates/$basearch/
gpgcheck=0
gpgkey=http://mirrors.chinacache.com/RPM-GPG-KEY-CentOS-5
[extras]
name=CentOS-$releasever - Extras
baseurl=http://mirrors.chinacache.com/centos/$releasever/extras/$basearch/
gpgcheck=0
gpgkey=http://mirrors.chinacache.com/RPM-GPG-KEY-CentOS-5
[centosplus]
name=CentOS-$releasever - Plus
baseurl=http://mirrors.chinacache.com/centos/$releasever/centosplus/$basearch/
gpgcheck=0
enabled=1
gpgkey=http://mirrors.chinacache.com/RPM-GPG-KEY-CentOS-5
[contrib]
name=CentOS-$releasever - Contrib
baseurl=http://mirrors.chinacache.com/centos/$releasever/contrib/$basearch/
gpgcheck=0
enabled=1
gpgkey=http://mirrors.chinacache.com/RPM-GPG-KEY-CentOS-5
centos-6.8 yum 源
yum.conf
[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
installonly_limit=5
bugtracker_url=http://bugs.centos.org/set_project.PHP?project_id=19&ref=http://bugs.centos.org/bug_report_page.PHP?category=yum
distroverpkg=centos-release
# This is the default,if you make this bigger yum won't see if the Metadata
# is newer on the remote and so you'll "gain" the bandwidth of not having to
# download the new Metadata and "pay" for it by yum not having correct
# information.
# It is esp. important,to have correct Metadata,for distributions like
# Fedora which don't keep old packages around. If you don't like this checking
# interupting your command line usage,it's much better to have something
# manually check the Metadata once an hour (yum-updatesd will do this).
# Metadata_expire=90m
# PUT YOUR REPOS HERE OR IN separate files named file.repo
# in /etc/yum.repos.d
CentOS-Base.repo
- vi /etc/yum.repos.d/CentOS-Base.repo
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client. You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you,as a fall back you can try the
# remarked out baseurl= line instead.
#
#
[base]
name=CentOS-$releasever - Base - 163.com
baseurl=http:
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
gpgcheck=1
gpgkey=http:
#released updates
[updates]
name=CentOS-$releasever - Updates - 163.com
baseurl=http:
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
gpgcheck=1
gpgkey=http:
#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras - 163.com
baseurl=http:
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
gpgcheck=1
gpgkey=http:
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus - 163.com
baseurl=http:
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
gpgcheck=1
enabled=0
gpgkey=http:
#contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib - 163.com
baseurl=http:
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib
gpgcheck=1
enabled=0
gpgkey=http:
原文链接:https://www.f2er.com/centos/376022.html