我是靠谱客的博主 彪壮荷花,这篇文章主要介绍centos7 arm内核配置yum源yum配置文件替换,现在分享给大家,希望可以做个参考。

yum配置文件替换

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

1、CentOS-Base.repo

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[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

最后

以上就是彪壮荷花最近收集整理的关于centos7 arm内核配置yum源yum配置文件替换的全部内容,更多相关centos7内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(65)

评论列表共有 0 条评论

立即
投稿
返回
顶部