1. 程式人生 > >01_Linux軟件源配置

01_Linux軟件源配置

圖片 ali img http mage ack yun make inf

一、國內軟件源

  1. 阿裏源:https://mirrors.aliyun.com/
  2. 清華大學:https://mirrors.tuna.tsinghua.edu.cn/
  3. 中科大 : https://mirrors.ustc.edu.cn/

有很多,大家可以百度。

二、以Centos 6.7為例配置

1.備份系統默認的源配置

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 

技術分享圖片

2.進入阿裏源官網

技術分享圖片

3.下載新的CentOS-Base.repo到/etc/yum.repos.d/

CentOS 5

wget -O /etc/yum.repos.d/CentOS-Base.repo http://
mirrors.aliyun.com/repo/Centos-5.repo

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

CentOS 6

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo 

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

CentOS 7

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 makecache

01_Linux軟件源配置