如何在centos7中安装配置epel源
时间: 2024-10-24 12:15:22 浏览: 27
centos中配置EPEL源
在CentOS 7中安装和配置Extra Packages for Enterprise Linux (EPEL)源可以帮助你获取一些非官方但常用的软件包。以下是步骤:
1. **检查系统版本**:
首先确认你的系统是否支持EPEL,因为EPEL只针对RHEL/CentOS 6、7和8。由于你是问的CentOS 7,所以它是可用的。
2. **添加EPEL GPG密钥**:
打开终端,运行以下命令来添加EPEL的公钥:
```
curl -o /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7 https://mirrors.fedoraproject.org/metalink?repo=epel-7&arch=$(_Arch)
```
`_Arch`会自动替换为你的系统架构(如`x86_64`)。
3. **安装 epel-release 包**:
使用 `yum` 或 `dnf`(如果你已经更新到较新的版本)来安装EPEL的RPM文件:
```
# 对于 yum 用户
sudo yum install epel-release
# 对于 dnf 用户(CentOS 7及以后)
sudo dnf install epel-release
```
4. **刷新软件库信息**:
安装完EPEL后,需要更新软件列表:
```
sudo yum makecache fast
```
或者对于 dnf 用户:
```
sudo dnf refresh
```
现在,EPEL源已经被成功添加并配置到了你的CentOS 7系统中,你可以使用`yum search`或`dnf search`来查找EPEL提供的软件包了。记得在安装新软件之前检查其版本和依赖。
阅读全文