1. 程式人生 > >CentOS 更換yum源為阿里源

CentOS 更換yum源為阿里源

  1. 使用vim檢視yum源:
    [[email protected] ~]# vim /etc/yum.repos.d/CentOS-Base.repo
  2. 本文以CentOS 7 為例,下載阿里雲yum源到/etc/yum.repos.d資料夾下:
    進入/etc/yum.repos.d資料夾:
    [[email protected] ~]# cd /etc/yum.repos.d
    使用wget下載阿里雲yum源至(如果沒有wget,需要安裝,命令:yum -y install wget):
    [[email protected] yum.repos.d]# wget http://mirrors.aliyun.com/repo/Centos-7.repo
    使用vim檢視阿里雲yum源:
    [[email protected] yum.repos.d]# vim Centos-7.repo

    如果是其他作業系統,可根據需選擇連結下載:
    網址:http://mirrors.aliyun.com/repo/
  3. 備份原有yum源:
    [[email protected] yum.repos.d]# mv CentOS-Base.repo CentOS-Base.repo.bak
  4. 複製阿里雲yum源,名稱為預設yum名稱:
    [[email protected] yum.repos.d]# cp Centos-7.repo CentOS-Base.repo
  5. 清理快取:
    [[email protected] yum.repos.d]# yum clean all

     

  6. 重新生成快取 :
    [[email protected] yum.repos.d]# yum makecache
  7. 再次使用vim檢視yum源:
    [[email protected] ~]# vim /etc/yum.repos.d/CentOS-Base.repo