CentOS7.x Linux默认镜像源改为阿里云镜像源 快速方法

目的:修改CentOS默认的yum源为mirrors.aliyun.com的镜像源

1.备份自带的yum源配置文件CentOS-Base.repo

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

2.下载ailiyun的yum源配置文件

两种方法:

(1)通过ftp工具(xftp,FileZilla,MobaX等)上传至Linux环境

下载地址:http://mirrors.aliyun.com/repo/Centos-7.repo

(2)使用wget命令下载

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

3.运行yum makecache生成缓存

扫描二维码关注公众号,回复: 12733462 查看本文章
yum makecache

4.更新系统 查看信息

yum -y update

猜你喜欢

转载自blog.csdn.net/qq_35260875/article/details/113879414