Forum Discussion
hwidjaja_37598
Sep 09, 2011Altostratus
I think this would work:
Using CentOS, you can download the module from CPAN, extract it and chdir to the newly created directory. Use PREFIX when you prepare the Makefile:
perl Makefile.PL PREFIX=/home/module/usr/local
The rest would be as usual:
make
make test
make install
Once it's done, transfer /home/module/usr/local to LTM. More detail about how to transfer the binary to LTM, you can take a look at Jason's steps.
Add the following line at the top of any of your scripts that require the module:
use lib "/home/module/usr/local/";
Good luck ...