概述
#!/bin/bash
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
if [ $? -eq 0 ];then
echo "移除成功"
fi
cd /etc/yum.repos.d
wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
if [ $? -eq 0 ]; then
echo "下载成功"
fi
yum clean all
if [ $? -eq 0 ]; then
echo "清理成功"
fi
yum makecache
if [ $? -eq 0 ]; then
echo "换源成功"
fi
最后
以上就是奋斗吐司为你收集整理的centos 切换阿里源脚本的全部内容,希望文章能够帮你解决centos 切换阿里源脚本所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复