You didn't mention clearly, why do you install modules as a root. Is it a multi-user environment, or you are the only citizen in the system?

If you want installed modules to be seen by other users, the best place for them is /usr/local. And this should be the default setting on fresh run of CPAN -- unless in my case (Ubuntu 9.04). Either run 'o conf init' from inside CPAN shell, or remove ~/.cpan dir to start from the beginning.

If you want to install modules for yourself only, I'd recommend using local user's folder -- this is the way I work and had no problems with it yet. To do so:

  1. Create folder ~/perl
  2. set PERL5LIB=~/perl/lib/perl5 somewhere in startup script (e.g. ~/.bash_profile)
  3. set following options in the CPAN
    o conf makepl_arg INSTALL_BASE=~/perl o conf mbuildpl_arg "--install_base ~/perl"

(in above code ~ is your homedir, please expand it)

After that, the CPAN installation should place all files in ~/perl.


In reply to Re: Funny Little Permissions Issue on Ubuntu by przemo
in thread SOLVED: Funny Little Permissions Issue on Ubuntu by BJ_Covert_Action

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.