[VPM] 1. Ubuntu + CPAN ? (Lloyd Budd)

Peter Scott Peter at PSDT.com
Wed Oct 10 13:43:06 PDT 2007


At 12:57 PM 10/10/2007, Charles Frank wrote:
>I have run up against this issue a few times in the past.  I usually 
>opt to keep my development application libs completely separate from 
>system libs based on application divide.

Ah yes, this is a very good point.  The "system" perl is part of a 
distro and should be unmolested.  So I always leave it alone and build 
my own perl from source and put it in /usr/local/bin.  And that is very 
easy too:

         su
         mkdir /usr/local/src/perl
         cd /usr/local/src/perl
         wget http://www.cpan.org/src/stable.tar.gz
         tar zxf stable.tar.gz
         rm stable.tar.gz
         cd perl-*
         ./Configure -des
         make test install

-- 
Peter Scott
Pacific Systems Design Technologies
http://www.perldebugged.com/
http://www.perlmedic.com/



More information about the Victoria-pm mailing list