I'm sorry if this sounds like a silly question, but when I compile something on linux using the usual "./configure, make, make install" steps, how can I install the programs on other servers without having to recompile?
I am trying to avoid having to install the build tools on production servers, however I need the latest version of a particular piece of software, so using RPMs isn't an option in this case.
Any help is appreciated.
Thanks
It seems like you want to have mass deployment of particular software source.
There are several solutions to this,
wget
source from url and compiles it.Hope this will solve your problem.