CentOS7切换阿里 yum 源
Posted 花伤情犹在
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7切换阿里 yum 源相关的知识,希望对你有一定的参考价值。
备份本机软件源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
下载新的CentOS-Base.repo 到/etc/yum.repos.d/
CentOS 7
阿里云:
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
网易163:
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
或者
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
清除缓存
yum clean all
生成缓存
yum makecache
常见问题
CentOS中wget命令不能用怎么办?
CentOS中wget命令不能使用是因为没有安装,只需要安装一下即可。
1、查看是否安装:
rpm -qa|grep "wget"
2、安装wget
yum -y install wget
3、再次查看是否安装(出现以下版本信息表示安装成功)
4、输入wget -h进行测试
以上是关于CentOS7切换阿里 yum 源的主要内容,如果未能解决你的问题,请参考以下文章