linux tar.gz 安装方法

http://baile8410.iteye.com/blog/546517

下面所所有操作,后面有所有步骤说明 
[yonghu@localhost ~]#       su root 
口令:                                       
[root@localhost ~]#         cd /home/new/Desktop 
[root@localhost Desktop]#   tar -xzvf fcitx-3.4.2.tar.gz 
[root@localhost Desktop]#   cd /home/new/Desktop/fcitx-3.4.2 
[root@localhost fcitx-3.4.2]#./configure --prefix=/opt/fictx 
[root@localhost fcitx-3.4.2]#make 
[root@localhost fcitx-3.4.2]#make install 

安装出现奇怪的问题:

http://blog.sina.com.cn/s/blog_4b9ac14701008mzq.html

 今天要在linux下安装mysql,但是在运行rpm -ivh **.rpm是时,出现错误,大体意思是glibc应该是2.3版本的,仔细查看,因为我用的是Red Hat 7.3,故glibc版本只有2.2,确实很老了,这个破linux版本害苦我了~于是开始下载glibc2.3.6,速度很慢。
下载终于完成,安装:
tar -zxvf glibc-2.3.6.tar.gz
cd glibc-2.3.6
./configure --prefix=/usr/local/glibc2.3.6/
报出错误如下:
configure: error: you must configure in a separate build directory
于是网上有达人说不能在解压的目录下进行configure,于是
cd ..
./glibc-2.3.6/configure --prefix=/usr/local/glibc2.3.6/
ok,成功了,很奇怪哦,我自己也不知道为什么,还有,如果哪位知道glibc是用来做什么的,也麻烦指教一下啦~