CentOS7设置阿里云yum源sh脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7设置阿里云yum源sh脚本相关的知识,希望对你有一定的参考价值。
#!/bin/bash #backup the original repo and use mirrors.aliyun.com as the repository of yum read -p "Please Enter backup file Name:" BACKNAME if [ -e /etc/yum.repo.d/$BACKNAME ] then echo "Sorry,the name $BACKNAME has been used!" else mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/$BACKNAME &> /dev/null if [ $? -eq 0 ] then wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo &> /dev/null if [ $? -eq 0 ] then echo "Set success!" else echo "Set failure!" fi else echo "backup Error!" fi fi乱写写CentOS7适用,其他的版本不一样啊...
以上是关于CentOS7设置阿里云yum源sh脚本的主要内容,如果未能解决你的问题,请参考以下文章
Linux(CentOS7.1)修改默认yum源为国内的阿里云yum源