If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!
When you first install centos 5, you’ll notice your unable to build from source (make / make install)
On ubuntu theres a package called build-tools that contains everything you need to build from source.
On centos you install them individually :
yum install gcc gcc-c++ autoconf automake rpm-build make which libtool
Or install everything you’ll need to build just about anything:
yum groupinstall "Development Tools"





