CentOS 6.x Install EPEL Repository

Introduction

The EPEL repository is not officially supported by CentOS, but provides much more current versions of popular applications like PHP or MYSQL, and allows other software such as phpmyadmin and htop. To enable it, simply copy and paste the following script into your terminal and execute it.

#!/bin/bash
cd ~
yum install wget -y
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -Uvh epel-*
rm epel-release-6-8.noarch.rpm -y

No comments:

Post a Comment