搭建网络yum源
Posted losbyday
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搭建网络yum源相关的知识,希望对你有一定的参考价值。
#!/bin/bash #Linux搭建163网络yum源 cd /etc/yum.repos.d/ echo "-------------------下载163-repo--------------------" wget http://mirrors.163.com/.help/CentOS6-Base-163.repo 2&>/dev/null sed -i "s/\$releasever/6/g" /etc/yum.repos.d/CentOS6-Base-163.repo sed -i "s/RPM-GPG-KEY-CentOS-6/RPM-GPG-KEY-CentOS-6/g" /etc/yum.repos.d/CentOS6-Base-163.repo yum clean all 2&>/dev/null yum makecache 2&>/dev/null
以上是关于搭建网络yum源的主要内容,如果未能解决你的问题,请参考以下文章