in reply to Free Unix account that lets you install CPAN modules

Everything cpan does can be done manually without too much effort. It doesn't install modules at all; it simply downloads them and lets their Makefile.PL or Build.PL do the installing.
tar xvzf foo.tar.gz cd foo

then either

perl Build.PL --install_base "$HOME" ./Build ./Build test ./Build install
or
perl Makefile.PL INSTALLBASE="$HOME" make make test make install

Tell Perl how to locate the modules you install by stuffing the following in your login script:

export PERL5LIB="$HOME/lib/perl5"

There are two catches: