很多Linux开发的新手用户不知道yum源配置怎么操作,yum源可以来源于多种文件服务器(http:// 、https:// 、ftp://、 file:// 本地文件),为了能让大家对此有一个深刻的了解,今天就为大家带来这个创建yum源配置文件的教程,希望可以帮助到有需要的网友。
yum源配置教程
yum源国内镜像站点:
- 阿里源 https://mirrors.aliyun.com/centos/7.3.1611/os/x86_64/
- 清华大学https://mirror.tuna.tsinghua.edu.cn/centos/7.3.1611/os/x86_64/
- 网易源http://mirrors.163.com/centos/7.3.1611/os/x86_64/
- 浙江大学http://mirrors.zju.edu.cn/centos/7.3.1611/os/x86_64/
注意:有repodata的目录的子目录为yum源的路径
yum的配置文件
cachedir=/var/cache/yum/$basearch/$releasever #yum下载后的缓存目录
keepcache=0 #是否缓存,0为不缓存,1为缓存
debuglevel=2
logfile=/var/log/yum.log #yum的安装日志
exactarch=1
obsoletes=1
gpgcheck=1 #默认是否进行gpg校验,0为不校验,1校验
plugins=1
installonly_limit=5
bugtracker_url=http://bugs.centos.org/set_project.php?project_id=23&ref=http://bugs.centos.org/bug_report_page.php?category=yum
distroverpkg=centos-release
配置实战
在yum配置文件中的最后一行,有以下说明,意思是:让你的repo放在/etc/yum.repo.d目录中,并且以.repo结尾
# PUT YOUR REPOS HERE OR IN separate files named file.repo
# in /etc/yum.repos.d
1、先切换到yum源中的配置目录cd /etc/yum.conf.d/
2、因为默认的yum源是CentOS-Base.repo,可以在此文件中修改,也可以将他修改后缀名,这里就修改后缀名吧
mv /etc/yum.conf.d/CentOS-Base.repo /etc/yum.conf.d/CentOS-Base.repo.bak
3、新建一个repo文件,命名为CentOS7.repo,如下配置:
所以,在配置yum源时候,最少只需要两行即可,[reponame]和baseurl: