Other than get a new ISP? :-(

It looks like FindBin (or Cwd) is trying to climb up your current path, presumably to build an absolute path to your current directory. This is unfortunate since it looks like you only have execute access to the .nfs directory, you need read access as well. It looks like the opendir is failing when it hits that directory. Note that this is not really an NFS problem. It exists if you do something like...

% mkdir -p a/b/c % chmod 111 a/b % cd a/b/c % <run your one-liner here>

If you could get your paranoid ISP to give you read/execute all the way up to '/', that might work. Other than that I don't know enough about the perl install to tell you what to try.

Even if you get this to work, if they ever change the mount point (and symlink), you are probably sunk.

bluto


In reply to Re: Installation: Perl failing to install on NFS mount by bluto
in thread Installation: Perl failing to install on NFS mount by moseley

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.