Skip to content

Instantly share code, notes, and snippets.

@bogre
Last active February 16, 2023 00:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bogre/02cc591ff0325d2ae7e954b86d5650d5 to your computer and use it in GitHub Desktop.
Save bogre/02cc591ff0325d2ae7e954b86d5650d5 to your computer and use it in GitHub Desktop.
install alternate glibc linux
mkdir $HOME/glibc/ && cd $HOME/glibc
wget http://ftp.gnu.org/gnu/libc/glibc-2.33.tar.gz
tar -xvzf glibc-2.33.tar.gz
mkdir build
mkdir glibc-2.33-install
cd build
~/glibc/glibc-2.33/configure --prefix=$HOME/glibc/glibc-2.33-install
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment