Centos6/7 升级更换epel 源

1, CentOS 6 x86_64

wget -P /etc/yum.repos.d/ http://mirrors.aliyun.com/repo/epel-6.repo

yum clean all

yum makecache

yum repolist

rm -rf  /etc/yum.repos.d/*

wget -P /etc/yum.repos.d/ http://mirrors.aliyun.com/repo/epel-6.repo http://mirrors.aliyun.com/repo/Centos-6.repo

2, CentOS 7 x86_64

wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-10.noarch.rpm

rpm -ivh epel-release-7-10.noarch.rpm

yum repolist (检查是否安装成功)

yum --enablerepo=epel info nginx (查看)

yum --enablerepo=epel install  nginx (用epel 源安装)

时间: 2024-10-13 22:53:27

Centos6/7 升级更换epel 源的相关文章

Centos6.4配置Fedora EPEL源附配置hop5.in源

查看系统版本 cat /etc/redhat-release 下载CentOS 版本所对应的EPEL 的版本 wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm 命令安装EPEL 软件包 rpm -ivh epel-release-6-8.noarch.rpm yum 命令来检查是否添加到源列表 yum repolist 且显示提供了上万个软件包,所以EPEL 已经安装到你的Cent

<摘录>CentOS6.5下添加epel源

0.安装yum优先级插件 yum install yum-priorities 1.epel简介: https://fedoraproject.org/wiki/EPEL/zh-cn rpm -Uvh http://mirrors.ustc.edu.cn/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm 以上UR

Centos6.5更换163源 epel源

想必大家都遇到过,安装新的centos系统,使用yum去安装软件的时候,要么找不到,要么慢的让人发疯. 网上其实办法很多,直接更换163源就ok,但是基本所有的文章都是直接wget下163的源,但是不知道为什么,wget下来的repo文件各种不好使,还得自己修改一下.这里,我把自己修改好的源复制到这里,大家换源的时候直接复制粘贴就ok了. [base] name=CentOS-$releasever - Base - 163.com baseurl=http://mirrors.163.com/

搭建内部yum仓库(centos6+centos7+epel源)

搭建自己的yum仓库,将自己制作好的rpm包,添加到自己的yum源中. yum仓库服务端配置如下 : 1. 创建yum仓库目录 mkdir -p /data/yum_data/cd /data/yum_data/#可以上传rpm包到此目录,此目录下面还可以包括文件夹 2. 安装createrepo软件[[email protected] yum_data]# yum -y install createrepo 3. 初始化repodata索引文件createrepo -pdo /data/yum

搭建企业内部yum仓库(centos6+centos7+epel源)

yum仓库服务端配置 1. 创建yum仓库目录 mkdir -p /data/yum_data/cd /data/yum_data/#可以上传rpm包到此目录,此目录下面还可以包括文件夹 2. 安装createrepo软件[[email protected] yum_data]# yum -y install createrepo 3. 初始化repodata索引文件createrepo -pdo /data/yum_data/ /data/yum_data/ 4. 提供yum服务# 可以用Ap

centos7 升级php7 添加配置epel源 报错:Cannot retrieve metalink for repository: epel. Please verify its path and try again

文章来自:循序渐渐linux:基础知识 一书 7.3章LAMP服务器搭建 日常故障 centos上好多软件升级需要配置epel源 其中有一点小插曲 需要手动更改 1.很多时候,对PHP环境要求较新的版本,例如,PHP 7环境,如果通过源码编译.安装,将会非常麻烦.这里提供一种通过yum工具安装最新PHP 版本的方法.首先,需要在系统上安装一个扩展yum源,即epel源, 可从http://fedoraproject.org/wiki/EPEL 网站下载针对CentOS 7版本的epel文件,然后

centos6.5的epel源安装脚本

epel源是对yum源的补充 [[email protected] omserver ~]# vim epel.sh #!/bin/bash yum install -y yum-priorities rpm -Uvh http://mirrors.ustc.edu.cn/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6

CentOS6.5安装 EPEL 源

安装 EPEL 源 EPEL 是 Extra Packages for Enterprise Linux 的缩写(EPEL),是用于 Fedora-based Red Hat Enterprise Linux (RHEL) 的一个高质量软件源,所以同时也适用于 CentOS 或者 Scientific Linux 等发行版. 为了保证系统的稳定性,强烈建议安装使用 YUM 的优先级控制功能. yum install http://mirrors.sohu.com/fedora-epel/6/x8

搭建yum的epel源与pip

EPEL (Extra Packages for Enterprise Linux,企业版Linux的额外软件包) 是Fedora小组维护的一个软件仓库项目, 为RHEL/CentOS提供他们默认不提供的软件包.这个源兼容RHEL及像CentOS和Scientific Linux这样的衍生版本. 我们可以很容易地通过yum命令从EPEL源上获取上万个在CentOS自带源上没有的软件.EPEL提供的软件包大多基于其对应的Fedora软件包,不会与企业版Linux发行版本的软件发生冲突或替换其文件.