centos7.6 配置阿里源

添加本地DNS:

vi /etc/resolv.conf
nameserver 100.79.1.30
 nameserver 100.79.1.31

添加华为proxy代理:

vi /etc/yum.conf
#proxy

proxy=http://域账户名:域账户密码(密码中的@替换为%40,#替换为%30)@proxynj.huawei.com:8080/

更改源地址:

cp /etc/yum.repos.d/elueros-base.repo /etc/yum.repos.d/elueros-base.repo.backup
vi /etc/yum.repos.d/elueros-base.repo

# CentOS-Base.repo
 #
 # The mirror system uses the connecting IP address of the client and the
 # update status of each mirror to pick mirrors that are updated to and
 # geographically close to the client. You should use this for CentOS updates
 # unless you are manually picking other mirrors.
 #
 # If the mirrorlist= does not work for you, as a fall back you can try the
 # remarked out baseurl= line instead.
 #
 #

 [base]
 name=CentOS-7.6.1810 - Base
 baseurl=https://mirrors.aliyun.com/centos-altarch/7.6.1810/os/aarch64/
 gpgcheck=1
 gpgkey=https://mirrors.aliyun.com/centos-altarch/7.6.1810/os/aarch64/RPM-GPG-KEY-CentOS-7-aarch64

 #released updates
 [updates]
 name=CentOS-7.6.1810 - Updates
 baseurl=https://mirrors.aliyun.com/centos-altarch/7.6.1810/updates/aarch64/
 gpgcheck=1
 gpgkey=https://mirrors.aliyun.com/centos-altarch/7.6.1810/os/aarch64/RPM-GPG-KEY-CentOS-7-aarch64

 #additional packages that may be useful
 [extras]
 name=CentOS-7.6.1810 - Extras
 baseurl=https://mirrors.aliyun.com/centos-altarch/7.6.1810/extras/aarch64/
 gpgcheck=1
 #gpgkey=https://mirrors.aliyun.com/centos-altarch/7.6.1810/os/aarch64/RPM-GPG-KEY-CentOS-7-aarch64
 gpgkey=https://mirrors.aliyun.com/centos-altarch/7.6.1810/os/aarch64/RPM-GPG-KEY-CentOS-7
 enabled=1

 #additional packages that extend functionality of existing packages
 [centosplus]
 name=CentOS-7.6.1810 - Plus
 baseurl=https://mirrors.aliyun.com/centos-altarch/7.6.1810/centosplus/aarch64/
 gpgcheck=1
 enabled=0
 gpgkey=https://mirrors.aliyun.com/centos-altarch/7.6.1810/os/aarch64/RPM-GPG-KEY-CentOS-7-aarch64

yum clean all
yum makecache

你可能感兴趣的:(搭建平台-软件安装,linux)