CentOS 换源
Posted Crayon Lin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 换源相关的知识,希望对你有一定的参考价值。
CentOS换源
1、备份当前yum源防止出现意外还可以还原回来
cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base-repo.bak
2、使用wget下载阿里yum源repo文件到/etc/yum.repos.d/目录
使用之前请确保已经安装wget,如未安装请执行下面一条命令来安装 yum install -y wget
centos 7
wget -P /etc/yum.repos.d/ wget http://mirrors.aliyun.com/repo/Centos-7.repo
centos 8
wget -P /etc/yum.repos.d/ wget http://mirrors.aliyun.com/repo/Centos-8.repo
3、 清理旧包
yum clean all
4、把下载下来阿里云repo文件设置成为默认源
cd /etc/yum.repos.d/
mv Centos-7.repo CentOS-Base.repo #centos 7
mv Centos-8.repo CentOS-Base.repo #centos 8
5、 生成阿里云yum源缓存并更新yum源
yum makecache
yum update
非阿里云服务器会出现 Couldn’t resolve host ‘mirrors.cloud.aliyuncs.com’ 信息,不影响使用。
也可使用下面命令解决。
sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS
6、查看存储库是否更换成功
yum repolist
类似输出:
centos最小安装换源
centos最小安装换源
首先我的Linux系统是基于centos的最小安装版本,所以自带的源都是被禁用了的,像类似于ifconfig,wget这样的命令都是无法使用的,所以我们需要手动的配置自己的源,而我们配置国内源的目的就是提高下载的速度。以下是解决的步骤
-
[参考博客](CentOS镜像使用帮助 (163.com))
-
备份之前的源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
- 查看自己当前centos的版本
cat /etc/system-release
-
进入到yum源配置文件所在的文件夹(/etc/yum.repos.d/),下载对应版本的源配置文件放到其中(Linux初学者在这里可以使用Xfpt软件解决),操作之前请将自己的源备份好,这里我使用的是网易的镜像源。
-
运行yum生成缓存
yum clean all
yum makecache
- 更新系统
yum -y update
# 更新源
yum upgrade
- 安装wget工具(可选,出现[-bash: wget 未找到命令的解决方案))
yum -y install wget
- 查看当前源版本
yum repolist
# 这一条命令也可以
ls /etc/yum.repos.d/
以上是关于CentOS 换源的主要内容,如果未能解决你的问题,请参考以下文章