centos 安装阿里源
Posted stranger_hello
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 安装阿里源相关的知识,希望对你有一定的参考价值。
很多时候Linux自带源用起来比较慢,所以考虑更换阿里源,国内的会相对较快,还有中科大,清华等源后期逐步更新。
配置方法
1. 备份
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2. 下载新的 CentOS-Base.repo 到 /etc/yum.repos.d/
CentOS 6
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-6.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-6.repo
CentOS 7
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
CentOS 8
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo
3. 生成元数据缓存
yum makecache
以上是关于centos 安装阿里源的主要内容,如果未能解决你的问题,请参考以下文章