in reply to Installation: Perl failing to install on NFS mount

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