Many thanks kroach. I had overlooked the detail that there are indeed several ways to install PERL.

Yesterday, I had configured the installation as recommended on http://www.cpan.org/src/README.html :

tar -xzf perl-5.20.2.tar.gz cd perl-5.20.2 ./Configure -des -Dprefix=$HOME/localperl make make test make install

As I recognize now the -Dprefix=$HOME/localperl makes essentially a "personalized" version of PERL for the installing user. In my case this user is root - that explains the problem of the other users and the entries in @INC.

Today, I configured as recommended in the INSTALL help and without a prefix:

tar -xzf perl-5.20.2.tar.gz cd perl-5.20.2 sh Configure -de make make test make install

Now everything works fine for all users and the entries in @INC are ok!

With many thanks and kind regards

mvi

In reply to Re^2: LINUX PERL 5.20.2 libraries and modules: "Permission denied" for all users except root by Anonymous Monk
in thread LINUX PERL 5.20.2 libraries and modules: "Permission denied" for all users except root by Anonymous Monk

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.