关于阿里云:阿里云镜像配置阿里云RepoForge-镜像

8次阅读

共计 1849 个字符,预计需要花费 5 分钟才能阅读完成。

一、参考链接

阿里巴巴开源镜像站 -OPSX 镜像站 - 阿里云开发者社区 (aliyun.com)

repoforge 镜像 -repoforge 下载地址 -repoforge 装置教程 - 阿里巴巴开源镜像站 (aliyun.com)

二、RepoForge 镜像介绍

Repoforge 是 RHEL 零碎下的软件仓库,领有 10000 多个软件包,被认为是最平安、最稳固的一个软件仓库。

下载地址:https://mirrors.aliyun.com/re…

三、RepoForge 镜像配置

1、运行 uname 获取 OS 版本号(如 EL6, EL7 等)

[root@centos ~]# uname  -a
Linux centos 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

2、向零碎中增加 Repoforge 的 GPG 公钥

[root@centos ~]# rpm --import https://mirrors.aliyun.com/repoforge/RPM-GPG-KEY.dag.txt
[root@centos ~]#

3、运行下列命令 (以 OS 版本 7 为例):

sudo cat > /etc/yum.repos.d/rpmforge.repo << EOF
[rpmforge]
name = RHEL $releasever - RPMforge.net - dag
baseurl = https://mirrors.aliyun.com/repoforge/redhat/el7/en/$basearch/rpmforge
mirrorlist = http://mirrorlist.repoforge.org/el7/mirrors-rpmforge
enabled = 1
protect = 0
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
gpgcheck = 1
[rpmforge-extras]
name = RHEL $releasever - RPMforge.net - extras
baseurl = https://mirrors.aliyun.com/repoforge/redhat/el7/en/$basearch/extras
mirrorlist = http://mirrorlist.repoforge.org/el7/mirrors-rpmforge-extras
enabled = 0
protect = 0
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
gpgcheck = 1
[rpmforge-testing]
name = RHEL $releasever - RPMforge.net - testing
baseurl = https://mirrors.aliyun.com/repoforge/redhat/el7/en/$basearch/testing
mirrorlist = http://mirrorlist.repoforge.org/el7/mirrors-rpmforge-testing
enabled = 0
protect = 0
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
gpgcheck = 1
EOF

4、更新 YUM 源

[root@centos ~]# yum repolist
Loaded plugins: fastestmirror, versionlock
Loading mirror speeds from cached hostfile
 * base: mirrors.aliyun.com
 * extras: mirrors.aliyun.com
 * rpmforge: mirrors.aliyun.com
 * updates: mirrors.aliyun.com
repo id               repo name                            status
base/7/x86_64    CentOS-7 - Base - mirrors.aliyun.com      10,072
extras/7/x86_64  CentOS-7 - Extras - mirrors.aliyun.com       500
rpmforge         RHEL  - RPMforge.net - dag                   245
updates/7/x86_64 CentOS-7 - Updates - mirrors.aliyun.com    3,242
repolist: 14,059
[root@centos ~]#
正文完
 0