Questions tagged [epel]

Extra Packages for Enterprise Linux (or EPEL) is a Fedora Special Interest Group that creates, maintains, and manages a high quality set of additional packages for Enterprise Linux, including, but not limited to, Red Hat Enterprise Linux (RHEL), CentOS and Scientific Linux (SL), Oracle Enterprise Linux(OEL).

Extra Packages for Enterprise Linux (or EPEL) is a Fedora Special Interest Group that creates, maintains, and manages a high quality set of additional packages for Enterprise Linux, including, but not limited to, Red Hat Enterprise Linux (RHEL), CentOS and Scientific Linux (SL), Oracle Enterprise Linux(OEL).

68 questions
129
votes
25 answers

yum error "Cannot retrieve metalink for repository: epel. Please verify its path and try again" updating ContextBroker

I'm trying to update Orion ContextBroker using the command yum install contextBroker. Unfortunatelly I get the following error: Loaded plugins: fastestmirror, refresh-packagekit, security Loading mirror speeds from cached hostfile Error: Cannot…
JosepB
  • 2,205
  • 4
  • 20
  • 40
24
votes
3 answers

What is the difference between two "state" option values, "present" and "installed", available in Ansible's yum module?

I have the following task in my ansible playbook: - name: Install EPEL repo. yum: name: "{{ epel_repo_url }}" state: present register: result until: '"failed" not in result' retries: 5 delay: 10 Another value I can pass to…
kevmo
  • 677
  • 1
  • 8
  • 20
15
votes
5 answers

Beanstalkd for CentOs 7

Due to a misconfiguration I've migrated a VPS from CentOs 6 to CentOs 7 for a fresh start. Among other things I had a beanstalkd service installed on CentOs 6. At the time I've followed this tutorial…
Hrusdik
  • 225
  • 3
  • 8
11
votes
8 answers

Installing EPEL repository on Centos 7 breaks yum functionality?

so I am trying to setup up a ssh bastion server, but I have problem setting up EPEL in order to install Python3.6. I am using CentOS Linux release 7.4.1708 (Core) So I am trying to install EPEL first by using sudo yum -y install epel-release (I did…
Jan Hamara
  • 178
  • 1
  • 1
  • 13
7
votes
5 answers

No package certbot available

I'm trying to install certbot on RHEL server. Instructions to enable epel-release # yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm then # subscription-manager repos --enable "rhel-*-optional-rpms" --enable…
vbnr
  • 307
  • 2
  • 5
  • 14
7
votes
2 answers

EPEL repository for ARM7

Trying to setup a banana-pi with CentOS 7 to be used a NAS, I come across many packages I have to compile myself. I wonder if there is a special repo for the armv7 architecture ? %uname -a Linux bananapi 4.2.3-200.el7.armv7hl #1 SMP Wed Nov 25…
cb0
  • 8,415
  • 9
  • 52
  • 80
6
votes
1 answer

Fastest way to install Tesseract on Elastic Beanstalk

I am currently using Tika to extract text from files uploaded to my Rails app running on AWS Elastic Beanstalk (64bit Amazon Linux 2016.03 v2.1.2 running Ruby 2.2). I'd like to index scanned images as well, so I need to install Tesseract. I was able…
5
votes
3 answers

How can I install the newest version of R (currently 4.0.0) on CentOS?

Title pretty much says it. I have epel installed and when I try to yum the new version, I get version 3.6.0. I know it's possible to compile it from the source, but CRAN seems to want to steer me away from that (and I'm happy to oblige).
Caroline
  • 450
  • 1
  • 5
  • 15
5
votes
1 answer

Set dependency for package from EPEL in spec file

I'm writing a spec file for software that depends on php-mcrypt. My target OS is CentOS 6.5 php-mcrypt isn't in the CentOS repositories, but it is in EPEL. Is there a better way to satisfy this dependency on the Requires: line rather than manually…
John Oliver
  • 325
  • 2
  • 4
  • 11
3
votes
3 answers

Enable EPEL with cloud-init via "User Data" (Amazon Linux)

I'm trying to install the p7zip package after launching an Amazon Linux-based EC2 instance in AWS via the "User Data" feature (using cloud-init): #cloud-config repo_update: true repo_upgrade: all packages: - p7zip However since p7zip isn't…
TC Fox
  • 980
  • 4
  • 13
  • 25
3
votes
4 answers

I attempted to enable the EPEL repo on my Fedora 22 machine and I broke it, now errors are thrown

I made the attempt at enabling EPEL on my Fedora 22 machine by running wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm Then sudo rpm -ivh epel-release-7-5.noarch.rpm And now when I run dnf repolist I get the…
Sinux1
  • 93
  • 5
  • 11
2
votes
2 answers

No package zbar available in lambda layer

trying to create a layer for my lambda function which uses the pyzbar library, which requires the zbar shared library as dependency, to be downloaded separately, and can't be installed with pip. My Dockerfile looks like this: FROM…
2
votes
2 answers

Unable to install packages via yum in AWS, [Errno -1] repomd.xml does not match metalink for epel

While install rpms via yum running into the below error in AWS EC2 instances. sudo yum update Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile epel/x86_64/metalink …
Sanjay M. P.
  • 919
  • 1
  • 16
  • 33
2
votes
1 answer

YUM package available in repo, but while install gives "No package"

I am upgrading from python 2.7 to 3.6. We are using JFrog artifactory repository for hosting packages. I have verified in the yum repo (artifactory) URL that the package python36 exists. Following are the things tried: In /etc/yum.repos.d/epel.repo,…
Ganesh Shenoy
  • 619
  • 1
  • 10
  • 28
2
votes
1 answer

repomd.xml missing for epel-release repo

I've just installed the epel-release repo via this link : http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-9.noarch.rpm , in order to install python-pip on my CentOS 7 VM. But after tha when I want to use yum, it gives me this error…
Pierre B
  • 321
  • 1
  • 2
  • 7
1
2 3 4 5