Linux入门教程:CentOS 更新 yum 源,什么是yum源


设置yum源

将yum源设置为国内yum源,可以提升软件包安装和更新的速度,同时避免一些常见软件版本无法找到。 国内源:可以使用wget获取或者直接下载

1.网易:

Centos5: http://mirrors.163.com/.help/CentOS5-Base-163.repo Centos6: http://mirrors.163.com/.help/CentOS6-Base-163.repo Centos7: http://mirrors.163.com/.help/CentOS7-Base-163.repo

2.中科大的yum源:

Centos5: https://lug.ustc.edu.cn/wiki/_export/code/mirrors/help/centos?codeblock=1 Centos6: https://lug.ustc.edu.cn/wiki/_export/code/mirrors/help/centos?codeblock=2 Centos7: https://lug.ustc.edu.cn/wiki/_export/code/mirrors/help/centos?codeblock=3

3.sohu的yum源:

http://mirrors.sohu.com/help/CentOS-Base-sohu.repo

安装步骤

1.首先备份CentOS-Base.repo

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

2.下载对应版本的CentOS-Base.repo, 放入/etc/yum.repos.d/ (可以直接cd /etc/yum.repos.d/ 然后使用wget下载)

3.运行以下命令生成缓存

yum clean all
yum makecache

相关内容