在linux的使用过程中,ISO镜像的rpm包并不是十分的齐全。这个时候就需要去epel源去下载安装rpm包安装。这里简单的描述下epel源的配置方法。仅供参考。
1.关闭SELinux
sed -i.bak ‘s/SELINUX=enforcing/SELINUX=permissive/’ /etc/selinux/config
setenforce 0
getenforce 查看是否修改生效
2.centos7关闭防火墙的方法
systemctl stop firewalld 关闭防火墙
systemctl disable firewalld 关闭防火墙自动启动
centos6关闭防火墙的方法
chkconfig iptables off
service iptables stop
3.配置base.repo文件
[epel]
name=epel
baseurl=http://172.18.0.1/epel/6/x86_64/
gpgcheck=0
enabled=1
4.执行yum clean all
5.执行yum repolist
查看配置的epel源是否配置成功
6.检查是否能安装epel源的安装包
安装bash-completion.noarch
安装成功则说明epel源配置成功。
本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/90338