centos7 arm内核配置yum源

yum配置文件替换

一、cd到目录 /etc/yum.repos.d创建/替换下面三个文件

1、CentOS-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-$releasever - Base
baseurl=http://mirror.centos.org/altarch/$releasever/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
       file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64

#released updates 
[updates]
name=CentOS-$releasever - Updates
baseurl=http://mirror.centos.org/altarch/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
       file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64

#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
baseurl=http://mirror.centos.org/altarch/$releasever/extras/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
       file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64

2、CentOS-Sources.repo

# CentOS-Sources.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-source]
name=CentOS-$releasever - Base Sources
baseurl=http://vault.centos.org/centos/$releasever/os/Source/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#released updates 
[updates-source]
name=CentOS-$releasever - Updates Sources
baseurl=http://vault.centos.org/centos/$releasever/updates/Source/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that may be useful
[extras-source]
name=CentOS-$releasever - Extras Sources
baseurl=http://vault.centos.org/centos/$releasever/extras/Source/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

[altarch-source]
name=CentOS-$releasever - AltArch Specific Sources
baseurl=http://vault.centos.org/altarch/$releasever/os/Source
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64

3、rockchip.repo

[rockchip-aarch64]
name=Rockchip aarch64 packages
baseurl=file:///var/rpm/centos/$releasever/rockchip/aarch64/
enabled=1
gpgcheck=1
type=rpm-md
gpgkey=file:///var/rpm/centos/keys/RPM-GPG-KEY-ROCKCHIP

[rockchip-noarch]
name=Rockchip aarch64 packages
baseurl=file:///var/rpm/centos/$releasever/rockchip/noarch/
enabled=1
gpgcheck=1
type=rpm-md
gpgkey=file:///var/rpm/centos/keys/RPM-GPG-KEY-ROCKCHIP

[rockchip-source]
name=Rockchip source packages
baseurl=file:///var/rpm/centos/$releasever/rockchip/source/
enabled=1
gpgcheck=1
type=rpm-md
gpgkey=file:///var/rpm/centos/keys/RPM-GPG-KEY-ROCKCHIP

二、清空/重建yum 缓存

yum clean all
yum makecache

三、可能报错,查看系统时间是否正确,不正确则重置时间

重置时间命令
date -s 2019-05-30
date -s 15:30:00
然后重新执行第二步操作

##########################################
yum源配置文件下载地址:https://download.csdn.net/download/qq_26775359/11216963

_Kc
发布了69 篇原创文章 · 获赞 9 · 访问量 7万+

猜你喜欢

转载自blog.csdn.net/qq_26775359/article/details/90698753
今日推荐