转自:linux系统运维 http://www.linuxyw.com/a/Shell/Python/2013/0412/27.html
这是shell自动安装国内yum源脚本——163网易YUM源
前提是你的系统是CentOS5.x或6.x系列的系统,否则可能会不适用
脚本坐自动判断你的系统是Centos版本,你只需要sh yum.sh即可
以下是脚本内容:
#!/bin/bash
#www.linuxyw.com
#63780668@qq.com
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.$(date +%F)_backup
cd /etc/yum.repos.d/
Ver=$(cat /etc/redhat-release |awk -F "." '{print $1}')
if [ "${Ver}" == "CentOS release 6" ]
then
wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
else
wget http://mirrors.163.com/.help/CentOS5-Base-163.repo
fi
yum makecache
echo "##########################################"
echo " The installation is complete "
echo "##########################################"
关于163网易YUM源更多说明
脚本下载地址:(在linux中执行以下命令,用wget下载,如果是其它系统,则去掉wget,相信你懂的)
wget http://www.linuxyw.com/scripts/yum.sh