I just attempted to install glibc
version 2.19
to my computer as follows:
1) I cloned the glibc
git repo with
$ cd ~
$ git clone git://sourceware.org/git/glibc.git
2) I checked out version 2.19
with
$ git co tags/glibc-2.19
3) I made a directory objdir
in my home directory, and built the installation there with
$ cd ~/objdir
$ ~/glibc/configure --prefix=$HOME
$ make
4) I tested the make with
$ make check
This gave me an error, but some webpage I found with a Google search told me this particular error wasn't a big deal. (I wish I could remember what the error and webpage were, but I can't, and I found the webpage using a computer I don't have access to right now, so it's not on my web history where I'm typing now.)
5) I attempted to install glibc
with
$ make install
This is where things went crazy for me. The installation failed midway, and, now using a broken glibc
, my user account completely stopped working.
Luckily, my system administrator was able to move my .bashrc
-- which was pointing to the broken glibc
under my home directory -- and revert me to a default .bashrc
. So I can log into my account again and do stuff.
My question is, what should I do to completely remove the broken installation of glibc
that resides under my home directory?