in reply to yast vs cpan
If the module I need either isn't packaged by the distro, or if I want a newer version, I install via cpan, but as my own non-privileged userid.
When you run CPAN as yourself, the questions tell you how to provide additional args to 'perl Makefile.PL' (PREFIX=foo) or 'Build.PL' (--install_base foo) to install in your home directory. I tend to put things in $HOME/install/perl.
Then you tell your shell to tell perl (when run as you) to find these modules:
and you can then have the best of both worlds. This won't allow other users (e.g. whatever userid your web server runs as) on your box to run the modules, but you can fix that by setting PERL5LIB to refer to your homedir install in that environment too (and check the file permissions work out).export PERL5LIB = $PERL5LIB:$HOME/install/perl/share/perl export PERL5LIB = $PERL5LIB:$HOME/install/perl/lib/perl
This also works nicely in the multiple-machine one-NFS-homedir setup.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: yast vs cpan
by elnino2007 (Novice) on Nov 09, 2006 at 19:19 UTC | |
by jbert (Priest) on Nov 09, 2006 at 21:26 UTC |