Skip to content

Instantly share code, notes, and snippets.

@andypowe11
Last active May 16, 2018 01:07
Show Gist options
  • Save andypowe11/dc5048b61494d7276e3864baa0fb016e to your computer and use it in GitHub Desktop.
Save andypowe11/dc5048b61494d7276e3864baa0fb016e to your computer and use it in GitHub Desktop.
#!/bin/sh
# Install the Lambda Linux EPLL repository on Amazon Linux
# See https://lambda-linux.io/#getting-started
# Download package signing public key using HTTPS
curl -X GET -o RPM-GPG-KEY-lambda-epll https://lambda-linux.io/RPM-GPG-KEY-lambda-epll
# Import package signing public key
sudo rpm --import RPM-GPG-KEY-lambda-epll
# Download EPLL Release (signed) RPM package using HTTPS
curl -X GET -o epll-release-2016.09-1.1.ll1.noarch.rpm https://lambda-linux.io/epll-release-2016.09-1.1.ll1.noarch.rpm
# Install EPLL Release RPM package
sudo yum -y install epll-release-2016.09-1.1.ll1.noarch.rpm
# That's It! You can now start using the EPLL packages
# sudo yum --enablerepo=epll install <package_name>
@bhyde
Copy link

bhyde commented Dec 16, 2016

go to https://lambda-linux.io/#getting-started, then click on the EPLL tab

@simplhug
Copy link

I've got the following error.

sudo yum -y install epll-release-2016.09-1.1.ll1.noarch.rpm
Loaded plugins: priorities, update-motd, upgrade-helper
Cannot open: epll-release-2016.09-1.1.ll1.noarch.rpm. Skipping.
Error: Nothing to do

@gadinise
Copy link

gadinise commented Mar 6, 2017

got the same error

@skehlet
Copy link

skehlet commented May 16, 2018

Same, but as @bhyde indicated, you can go to https://lambda-linux.io/#getting-started, click EPLL REPOSITORY (hard to see, it's greyed out, but it is a tab) and there are updated instructions for this gist.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment