Last active
August 29, 2015 13:58
-
-
Save toxaq/10085811 to your computer and use it in GitHub Desktop.
Upgrading OpenSsl on Rackspace
This file contains 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
#Check version, needs to be: 1.0.1-4ubuntu5.12 | |
apt-cache policy openssl | |
#Backup source list | |
sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup | |
# Change your mirrors, Rackspace is out of date | |
sudo sed -i 's/mirror.rackspace.com/us.archive.ubuntu.com/g' /etc/apt/sources.list | |
#Update your packages | |
sudo apt-get update | |
#Install the latest version | |
sudo apt-get install openssl=1.0.1-4ubuntu5.12 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment