in reply to Help installing Net::SSH::Perl

I had the similar problem not so long ago. My notes are at my work desk, but here are several tips:
  • do a -MCPAN -e 'force install ..' instead of regular 'install' on any module that is claimed to be not found. That includes the Math::PARI, the Term::Gnuplot, and some other large number library.
  • better yet, after done all that, install Bundle::SSH (might use force again), which contains all the modules with all the dependencies. Until Monday I can't give any more exact advice, since the thing happened some time ago, but I got the Net::SSH::Perl installed successfully on RedHat 8.
  • Replies are listed 'Best First'.
    Re: Re: Help installing Net::SSH::Perl
    by SyN/AcK (Scribe) on Jul 26, 2003 at 14:12 UTC

      Thank you, this solved it all!

      Now I'm having a problem using it though. It seems that the way that I've implemented, to authenticate with a user pass combo, has a problem. On a failed login, rather than just return control to the user to type a new password, it seems to run the same password (I know this from watching in debug mode) three times, then quit saying that it failed at the line in my perl code where I have it logging in.

      Furthermore, I know it is quite common to fail on three login attempts from a regular user, but its also failing after three on the root user. I thought that root usually had unlimited logins... am I wrong here?

      Thanks for the help guys, both comments were very helpful!