centos7配置epel源
时间: 2023-08-09 20:06:45 浏览: 96
centos中配置EPEL源
好的,以下是在CentOS 7上配置EPEL源的步骤:
1. 打开终端窗口并以root用户身份登录。
2. 下载EPEL源安装包:
```
wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
```
3. 安装EPEL源:
```
rpm -ivh epel-release-latest-7.noarch.rpm
```
4. 确认EPEL源已成功安装:
```
yum repolist
```
5. 如果您想更新EPEL源,请运行:
```
yum update
```
以上就是在CentOS 7上配置EPEL源的步骤。
阅读全文