天天看點

Centos7.3修改yum源為阿裡雲yum源

  • yum源的位置在 /etc/yum.repos.d 下,Centos-Base.repo為yum源配置檔案
Centos7.3修改yum源為阿裡雲yum源
  • 備份原來的yum檔案
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_bak           
  • 下載下傳阿裡雲的 CentOS-Base.repo 到/etc/yum.repos.d/
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo           

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo           
  • 清空原本yum緩存
yum clean all           
  • 生成新的阿裡雲的yum緩存,加速下載下傳預熱資料
yum makecache           

繼續閱讀