November 27, 201213 yr I have some perl scripts running on my unraid box that need a couple perl modules. Took some googling and testing to get it figured out (a couple years ago). I figured I would post what works for me in hopes that it will help someone else. Here are the relevant parts of my go script. installpkg /boot/packages/gcc-4.2.4-i486-1.tgz installpkg /boot/packages/glibc-2.7-i486-17.tgz installpkg /boot/packages/binutils-2.18.50.0.9-i486-1.tgz installpkg /boot/packages/make-3.81-i486-1.tgz installpkg /boot/packages/kernel-headers-2.6.27.7_smp-x86-1.tgz installpkg /boot/packages/cxxlibs-6.0.9-i486-1.tgz installpkg /boot/custom/perl/perl-5.10.0-i486-1.tgz PERL_MM_USE_DEFAULT=1 cpan App::cpanminus PERL_MM_USE_DEFAULT=1 cpanm LWP::Simple mkdir /tmp/src cd /tmp/src cp /boot/packages/curl-7.25.0.tar.gz . tar xzf curl-7.25.0.tar.gz cd curl-7.25.0 ./configure make make install cp /usr/local/lib/* /usr/lib
Archived
This topic is now archived and is closed to further replies.