-
安装wget
yum -y install wget
-
备份Centos7自带的镜像源文件
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_back
-
下载镜像源文件
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
-
下载镜像源文件
wget -O /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repo
-
清除缓存
yum clean all
-
生成缓存
yum makecache
-
更新yum
yum update
-
查看系统可用的yum源和所有的yum源
yum repolist enabled yum repolist all
-
脚本
#!/bin/bash yum -y install wget mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_back wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo wget -O /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repo yum clean all yum makecache yum update -y yum repolist enabled yum repolist all
Centos7配置阿里云yum镜像
于 2022-05-15 17:49:56 首次发布
该博客介绍了如何在CentOS7系统中安装wget,然后备份并替换默认的镜像源文件,使用阿里云的CentOS-7和EPEL-7镜像源。接着清理缓存,生成新的缓存,并执行系统更新。最后,展示了如何查看已启用和所有可用的yum源。
摘要由CSDN通过智能技术生成