Last active
December 15, 2015 19:09
-
-
Save teohm/5309145 to your computer and use it in GitHub Desktop.
Downgrade OpenSSL (1.0.1c) in Ubuntu 12.10 to Ubuntu 11.10's OpenSSL (1.0.0e)
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
sudo vi /etc/apt/sources.list | |
deb http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ oneiric main | |
deb-src http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ oneiric main | |
deb http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ oneiric-updates main | |
deb-src http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ oneiric-updates main | |
deb http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ oneiric-security main | |
deb-src http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ oneiric-security main | |
deb http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ oneiric universe | |
deb-src http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ oneiric universe | |
deb http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ oneiric-security universe | |
deb-src http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ oneiric-security universe | |
deb http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ oneiric-updates universe | |
deb-src http://us-east-1.ec2.archive.ubuntu.com/ubuntu/ oneiric-updates universe | |
sudo apt-get update | |
# assume you have openjdk-7 installed | |
sudo apt-get install openjdk-7-jre-headless=7u15-2.3.7-0ubuntu1~11.10.1 openjdk-7-jre-lib=7u15-2.3.7-0ubuntu1~11.10.1 ca-certificates-java=20110912ubuntu3.2 default-jre=1:1.6-42ubuntu2 default-jre-headless=1:1.6-42ubuntu2 libssl1.0.0=1.0.0e-2ubuntu4.7 ca-certificates=20110502+nmu1ubuntu5 openssl=1.0.0e-2ubuntu4.7 libcurl3=7.21.6-3ubuntu3.2 curl=7.21.6-3ubuntu3.2 openssh-server=1:5.8p1-7ubuntu1 openssh-client=1:5.8p1-7ubuntu1 libssl-dev=1.0.0e-2ubuntu4.7 libpq-dev=9.1.8-0ubuntu11.10 libpq5=9.1.8-0ubuntu11.10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
libcurl3=7.21.6-3ubuntu3.2 and curl=7.21.6-3ubuntu3.2 are no longer available. Need to use libcurl3=7.21.6-3ubuntu3.3 and curl=7.21.6-3ubuntu3.3 instead.