Created
January 28, 2015 23:39
-
-
Save eduherraiz/3d4be2cf108e59f77a12 to your computer and use it in GitHub Desktop.
GHOST upgrade libc6 ubuntu 11.10
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
#!/bin/bash | |
# Upgrade libc6 for security problem GHOST on ubuntu 11.10 | |
# We are using the ubuntu packages from the 12.04 and installing by hand | |
wget http://security.ubuntu.com/ubuntu/pool/main/e/eglibc/libc-bin_2.15-0ubuntu10.10_amd64.deb | |
wget http://security.ubuntu.com/ubuntu/pool/main/e/eglibc/libc6_2.15-0ubuntu10.10_amd64.deb | |
wget http://security.ubuntu.com/ubuntu/pool/main/e/eglibc/libc-dev-bin_2.15-0ubuntu10.10_amd64.deb | |
wget http://security.ubuntu.com/ubuntu/pool/main/e/eglibc/libc6-dev_2.15-0ubuntu10.10_amd64.deb | |
dpkg -i libc-bin_2.15-0ubuntu10.10_amd64.deb | |
dpkg -i libc6_2.15-0ubuntu10.10_amd64.deb | |
dpkg -i libc-dev-bin_2.15-0ubuntu10.10_amd64.deb | |
dpkg -i libc6-dev_2.15-0ubuntu10.10_amd64.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment