原文链接:https://blog.csdn.net/u011341352/article/details/82943871
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| EPEL源-是什么?为什么安装? EPEL (Extra Packages for Enterprise Linux)是基于Fedora的一个项目,为“红帽系”的操作系统提供额外的软件包,适用于RHEL、CentOS和Scientific Linux. 使用很简单: 1. 首先需要安装一个叫”epel-release”的软件包,这个软件包会自动配置yum的软件仓库。当然你也可以不安装这个包,自己配置软件仓库也是一样的。 #用于RHEL5系列 wget http: rpm -ivh epel-release-5-4.noarch.rpm #用于RHEL6系列 wget http: rpm -ivh epel-release-6-5.noarch.rpm 2. 安装完成之后你就可以直接使用yum来安装额外的软件包了 yum clean all yum makecache yum install nginx pure-ftpd 3.直接自己手工添加软件仓库配置文件 vi /etc/yum.repos.d/epel.repo [epel] name=epel mirrorlist=http: enabled=1 gpgcheck=0 CentOS6.5添加阿里云的EPEL源 yum localinstall --nogpgcheck http: 安装阿里云EPEL源 1、首先卸载以前装的epel以免影响 rpm -e epel-release 2、 下载阿里提供的epel wget -P /etc/yum.repos.d/ http: 3、yum clean all 4、yum makecache 阿里云源安装示例: 1、备份(如有配置其他epel源) mv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.backup mv /etc/yum.repos.d/epel-testing.repo /etc/yum.repos.d/epel-testing.repo.backup 2、下载新repo 到/etc/yum.repos.d/ epel(RHEL 7) wget -O /etc/yum.repos.d/epel.repo http: epel(RHEL 6) wget -O /etc/yum.repos.d/epel.repo http: epel(RHEL 5) wget -O /etc/yum.repos.d/epel.repo http: 来源:https:
|
赞赏一下 坚持原创技术分享,您的支持将鼓励我继续创作!