dkindlund / honeyclient

MITRE HoneyClient Project
http://www.honeyclient.org
GNU General Public License v2.0
8 stars 4 forks source link

HoneyClient::Manager Dependencies Install issues #210

Open dkindlund opened 14 years ago

dkindlund commented 14 years ago

This will not install even with fforce. Hope you may shed some light on the issue. T.Y. Brendan {{{ cpan> force install DBD::mysql Running install for module 'DBD::mysql' Running make for C/CA/CAPTTOFU/DBD-mysql-4.006.tar.gz Has already been unwrapped into directory /home/ctslab/honeyclient/cpan/build/DBD-mysql-4.006-Uiwxti '/usr/bin/perl Makefile.PL INSTALLDIRS=site' returned status 512, won't make Running make test Make had some problems, won't test Running make install Make had some problems, won't install

}}}

dkindlund commented 14 years ago

Author: lab8@ymail.com I took care of DBD::mysql , now I am stuck on

cpan> install DURIST/Proc-ProcessTable-0.42.tar.gz Running make for D/DU/DURIST/Proc-ProcessTable-0.42.tar.gz Prepending /home/ctslab/honeyclient/cpan/build/PathTools-3.27-bupt2i/blib/arch /home/ctslab/honeyclient/cpan/build/PathTools-3.27-bupt2i/blib/lib to PERL5LIB for 'get' Has already been unwrapped into directory /home/ctslab/honeyclient/cpan/build/Proc-ProcessTable-0.42-E4X_9H Prepending /home/ctslab/honeyclient/cpan/build/PathTools-3.27-bupt2i/blib/arch /home/ctslab/honeyclient/cpan/build/PathTools-3.27-bupt2i/blib/lib to PERL5LIB for 'make' Could not make: Unknown error Prepending /home/ctslab/honeyclient/cpan/build/PathTools-3.27-bupt2i/blib/arch /home/ctslab/honeyclient/cpan/build/PathTools-3.27-bupt2i/blib/lib to PERL5LIB for 'test' Running make test Can't test without successful make Running make install Make had returned bad status, install seems impossible

dkindlund commented 14 years ago

Author: lab8@ymail.com I attempted the CPAN> look DURIST/Proc-ProcessTable-0.42.tar.gz perl Makefile.PL make make install

Didn't work

dkindlund commented 14 years ago

Author: kindlund Okay, so it looks like Proc::ProcessTable library depends on PathTools, which has failed. To troubleshoot further, you can do:

{{{ cpan> look PathTools $ make $ make test $ make install }}}

... and print the output if there are any errors.

Also, you realize that these problems are with libraries that are completely outside the Honeyclient codebase. To that end, there are additional forums you can use when trying to troubleshoot these libraries. For example, if you search for "PathTools" on www.cpan.org, you'll find this page:

http://search.cpan.org/~smueller/PathTools-3.29/

Which will take you to their bug discussion forum on this page:

http://rt.cpan.org/Public/Dist/Display.html?Name=PathTools

You can repeat this process for any other perl library you have problems installing.

-- Darien