Also, ich komm mal gleich zur sache:

Das ist mein Code, is nur nen Test für ein grösseres Projekt, mit dem ich jetzt wegen des fehlers nicht weiter komme. Wichtig währe da nur noch das ich grad erst mit Perl angefangen habe.

_____________________________________

#!/usr/bin/perl -w

use strict;
use Net::SSH::Perl;
my $host = '192.168.0.1';
my $user = 'andi';
my $pass = '******';

my $ssh = Net::SSH::Perl->new($host);
$ssh->login($user, $pass);

______________________________________
Das passiert beim ausführen:

./prog.pl
__________________________________________________ _____________

Can't load '/usr/lib/perl5/5.8.0/auto/Math/GMP/GMP.so' for module Math::GMP: /usr/lib/perl5/5.8.0/auto/Math/GMP/GMP.so: undefined symbol: PL_markstack_ptr at /usr/lib/perl5/5.8.0/i586-linux-thread-multi/DynaLoader.pm line 229, <GEN0> line 1.
at /usr/lib/perl5/5.8.0/Net/SSH/Perl/Util/SSH1MP.pm line 7
Compilation failed in require at /usr/lib/perl5/5.8.0/Net/SSH/Perl/Util/SSH1MP.pm line 7, <GEN0> line 1.
BEGIN failed--compilation aborted at /usr/lib/perl5/5.8.0/Net/SSH/Perl/Util/SSH1MP.pm line 7, <GEN0> line 1.
Compilation failed in require at /usr/lib/perl5/5.8.0/Net/SSH/Perl/Util.pm line 56, <GEN0> line 1.
BEGIN failed--compilation aborted at /usr/lib/perl5/5.8.0/Net/SSH/Perl/Key/RSA1.pm line 6, <GEN0> line 1.
Compilation failed in require at /usr/lib/perl5/5.8.0/Net/SSH/Perl/SSH1.pm line 13, <GEN0> line 1.
BEGIN failed--compilation aborted at /usr/lib/perl5/5.8.0/Net/SSH/Perl/SSH1.pm line 13, <GEN0> line 1.
Compilation failed in require at /usr/lib/perl5/5.8.0/Net/SSH/Perl.pm line 51, <GEN0> line 1.
__________________________________________________ _____________________

Heul ich kapier gar nix mehr.

Vielen Dank schon mal.