Hi all!
I try to login through SSH using this code:
#!/usr/bin/perl -w
use Net::SSH:
erl;
my $remotehost = "host";
my $remoteport = "22";
my $remoteuser = "auser";
my $remotepassword = "apassword";
my $ssh = Net::SSH:
erl->new($remotehost);
$ssh->login($remoteuser, $remotepassword);
I then get this error on ->login():
"PARI: *** incorrect type in a transcendental function. at /usr/local/lib/perl/5.8.8/Math/Pari.pm line 994."
Now, it was by itself pretty problematic installing Pari (the version on cpan is 2.1.7) but as far as I understand, that's kind of normal. The only thing I have found anywhere on this error anywhere is a mentioning at And that is a discussion from 1999 regarding a bug.
Help? Anyone?
I try to login through SSH using this code:
#!/usr/bin/perl -w
use Net::SSH:
my $remotehost = "host";
my $remoteport = "22";
my $remoteuser = "auser";
my $remotepassword = "apassword";
my $ssh = Net::SSH:
$ssh->login($remoteuser, $remotepassword);
I then get this error on ->login():
"PARI: *** incorrect type in a transcendental function. at /usr/local/lib/perl/5.8.8/Math/Pari.pm line 994."
Now, it was by itself pretty problematic installing Pari (the version on cpan is 2.1.7) but as far as I understand, that's kind of normal. The only thing I have found anywhere on this error anywhere is a mentioning at And that is a discussion from 1999 regarding a bug.
Help? Anyone?