配置yum
1.备份:
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2. 下载新的 CentOS-Base.repo 到 /etc/yum.repos.d/
CentOS 7:
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
CentOS 8
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo
二、配置epel
epel(RHEL 7)
wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo
手动配置
在CentOS 7中
1.创建一个新的 repo 文件或编辑现有文件:
vi /etc/yum.repos.d/nginx.repo
2.将以下内容复制到文件中:
[epel]
name=Extra Packages for Enterprise Linux 7 - $basearch
baseurl=http://mirrors.aliyun.com/epel/7/$basearch
failovermethod=priority
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
[epel-debuginfo]
name=Extra Packages for Enterprise Linux 7 - $basearch - Debug
baseurl=http://mirrors.aliyun.com/epel/7/$basearch/debug
failovermethod=priority
enabled=0
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
[epel-source]
name=Extra Packages for Enterprise Linux 7 - $basearch - Source
baseurl=http://mirrors.aliyun.com/epel/7/SRPMS
failovermethod=priority
enabled=0
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
3.保存并退出: 保存文件后,退出编辑器(在 vi
中按 Esc
,然后输入 :wq
进行保存并退出)。
4.清理并更新缓存: 清理旧的 yum
缓存,并下载新的仓库信息:
yum clean all
yum makecache
5.安装 EPEL 软件包: 现在你可以使用 EPEL 仓库来安装软件包了,例如:
yum install -y htop
在 CentOS 8 上,`EPEL` 源的配置与 CentOS 7 稍有不同,因为 CentOS 8 使用 `dnf` 而不是 `yum`,并且 EPEL 源的 URL 和架构也有所变化。以下是如何为 CentOS 8 配置阿里云 EPEL 镜像源的方法。
### 1. 修改 `epel.repo` 配置文件
首先,你需要修改或者创建 `/etc/yum.repos.d/epel.repo` 文件。将内容更新为针对 CentOS 8 的 EPEL 配置。
vi /etc/yum.repos.d/epel.repo
将以下内容复制到文件中:
[epel]
name=Extra Packages for Enterprise Linux 8 - $basearch
baseurl=http://mirrors.aliyun.com/epel/8/Everything/$basearch
failovermethod=priority
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
[epel-debuginfo]
name=Extra Packages for Enterprise Linux 8 - $basearch - Debug
baseurl=http://mirrors.aliyun.com/epel/8/Everything/$basearch/debug
failovermethod=priority
enabled=0
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
[epel-source]
name=Extra Packages for Enterprise Linux 8 - $basearch - Source
baseurl=http://mirrors.aliyun.com/epel/8/Everything/SRPMS
failovermethod=priority
enabled=0
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
### 2. 清理缓存并生成缓存数据
保存并退出文件后,运行以下命令清理 `dnf` 缓存并生成新的缓存数据:
dnf clean all
dnf makecache
### 3. 安装 EPEL 包
现在,你可以使用阿里云的 EPEL 源来安装软件包了。例如,安装 `htop` 软件:
dnf install htop
### 注意:
- CentOS 8 使用的是 `dnf` 包管理工具,所以在 CentOS 8 中你将使用 `dnf` 而不是 `yum`。
- EPEL 源的 URL 在 CentOS 8 上变为了 `http://mirrors.aliyun.com/epel/8/Everything/`,所以 `baseurl` 需要相应调整。
通过这个配置,你就可以从阿里云的 EPEL 源来安装扩展软件包。