#Get the proxy stuff out of the way setenv http_proxy #Use wget and cpan to install Lib::Local wget http://search.cpan.org/CPAN/authors/id/H/HA/HAARG/local-lib-2.000015.tar.gz #Untar the library tar -xvpf local-lib-2.000015.tar.gz #cd into the untarred directory cd local-lib-2.000015 #Tell the makefile where you plan to install the library # Intended path: /path/to/install/lib/perl5/Local # Use: --bootstrap=/path/to/install perl Makefile.PL --bootstrap=/path/to/install #Run make test to ensure everything is setup correctly make test #Run make install the complete the install make install #You should now be ready to install any additional modules. #use wget to get the package from cpan(same as before) #untar the package and cd into the directory(same as before) #Execute the MakeFile(This will be different) perl -I/path/to/lib/local/lib/perl5 -Mlocal::lib=/path/to/install/new/module/ Makefile.PL #Then run make test and make install as before