in reply to Problems in Net::SSH
I don't use windows, but since no one else replied, I will edu-guess it's the old "library-version-binary-mismatch". In C (C++), in both linux and windows, the libraries need to be compiled so that they match. In linux, it is a small problem, because we have a free c compiler, so when we compile a module, it will be compatibility matched for our OS level, and basic c libraries. If on linux, you try to install a binary(pre-compiled) library, for a certain GLibc level, and the GLibc levels don't match with your particular OS, we get the same error.
So on windows, you need to look at the version of windows that you are using, the version of ActiveStatePerl installed( assuming you use it), and the version of the module you downloaded. Usually, if you read the README files very carefully, they will say what versions of windows, and windows-based-perl are compatible. Also you must look at the compatibility of the pre-requisite libs that Net::SSH needs.
Goodluck.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problems in Net::SSH
by syphilis (Archbishop) on Jan 30, 2008 at 07:05 UTC | |
by cristianekw (Novice) on Jan 30, 2008 at 10:47 UTC | |
by syphilis (Archbishop) on Jan 30, 2008 at 12:15 UTC |