Last active
May 16, 2018 01:07
-
-
Save andypowe11/dc5048b61494d7276e3864baa0fb016e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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> |
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
got the same error
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
go to https://lambda-linux.io/#getting-started, then click on the EPLL tab