為各版本linux添加yum源
阿新 • • 發佈:2018-01-28
help -o etc ali 備份 運行 阿裏雲 inux 配置 為各版本linux添加yum源
這裏我就以Centos 6.5 來做演示 首先先百度下對應版本的yun源
國內比較好的yum源主要是阿裏雲、163以及搜狐的,更新yum的命令如下:
//更新為阿裏雲的源 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo //更新為163的源 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS6-Base-163.repo //更新為搜狐的源 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.sohu.com/help/CentOS-Base-sohu.repo
1.進入yum源配置目錄
cd /etc/yum.repos.d
2.做什麽改動前最後都做個備份 以防出錯 還能恢復
mv CentOS-Base.repo CentOS-Base.repo.bak
3.下載新的CentOS-Base.repo 到/etc/yum.repos.d/
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
4.運行yum makecache生成緩存
yum clean all
yum makecache
為各版本linux添加yum源