centos换源
Posted JasonCode
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos换源相关的知识,希望对你有一定的参考价值。
centos换源
- 备份之前的源文件
# 进入Root用户
su
# 备份源文件
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
- 查看自己当前的centos版本
cat /etc/system-release
- 查看和下载对应版本的源
# 阿里源
# centos5
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
# centos6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
# centos7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
# 网易源
# centos5
wget http://mirrors.163.com/.help/CentOS5-Base-163.repo
# centos6
wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
# centos7
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
- 清空yum缓存并生存cache文件
yum clean all
yum makecache
- 更新软件
yum -y update
-
如果 wget 没有安装,运行下面命令安装 wget 软件
-
yum update --skip-broken yum -y install wget
以上是关于centos换源的主要内容,如果未能解决你的问题,请参考以下文章
片段(Java) | 机试题+算法思路+考点+代码解析 2023
CentOS yum 命令出现 [Errno 14] curl#6 - "Couldn't resolve host ..." 的解决方法(代码片段