Skip to content

Instantly share code, notes, and snippets.

@alsyundawy
Forked from harv/glibc-2.17_centos6.sh
Last active December 12, 2024 04:59
Show Gist options
  • Save alsyundawy/499ccea8293d739f8665dd93a52a65d1 to your computer and use it in GitHub Desktop.
Save alsyundawy/499ccea8293d739f8665dd93a52a65d1 to your computer and use it in GitHub Desktop.
update glibc to 2.17 for CentOS 6
#!/bin/sh
# Update glibc ke 2.17 untuk CentOS 6
# Unduh paket glibc
wget -c \
http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-2.17-55.el6.x86_64.rpm \
http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-common-2.17-55.el6.x86_64.rpm \
http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-devel-2.17-55.el6.x86_64.rpm \
http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-headers-2.17-55.el6.x86_64.rpm
# Instalasi paket glibc
rpm -Uvh --nodeps glibc-*.el6.x86_64.rpm
# Hapus file RPM
rm -f glibc-*.el6.x86_64.rpm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment