I re-installed these three libraries and then the login worked

So much for my assertion that there's "Nothing there that's going to cause any problems (except for speed of processing)". Perhaps, with pure perl, things are so slow that a timeout was occurring.

IIRC, the code that tries to load those modules goes something like:
use Math::BigInt lib => 'GMP Pari BitVector';
which tries to load the respective modules in that order. It's therefore unnecessary to install all three, as the first one that gets found is the one that will be used. If the first one that's specified is found, then there will be no warnings issued about the others if they are absent. (And, as already stated, if none are found, then the pure perl Math::BigInt is used.) GMP and Pari are significantly faster than BitVector, and therefore preferable.

How did you know the libraries?

I remember from a few years back that there were GMP, Pari and Bit::Vector plug-ins available for Math::BigInt. (Actually ... I don't see Math::BigInt::BitVector on CPAN any more. Was I right about it ?)

Cheers,
Rob

In reply to Re^4: Problems in Net::SSH by syphilis
in thread Problems in Net::SSH by cristianekw

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.