All done on Ubuntu 12 server.
Pretty much followed this guide:
https://code.google.com/p/collective-intelligence-framework/wiki/ServerInstall_Ubuntu12_v1
Ran into a few issues…
Had to force some perl modules.
cpanm Net::Abuse::Utils –force
And version 1.7 of Linux::Cpuinfo wouldn’t install. Just removed the @1.7.
cpanm git://github.com/gitpan/Linux-Cpuinfo.git –force
Then you have to grab this Cpuinfo.pm and place it the correct location.
cd /usr/local/share/perl/5.14.2/Linux/
wget https://metacpan.org/raw/JSTOWE/Linux-Cpuinfo-1.8/lib/Linux/Cpuinfo.pm?download=1
mv Cpuinfo.pm?download=1 Cpuinfo.pm
chmod +x Cpuinfo.pm
You should be able to ./configure && make testdeps in the cif-LATEST directory under the “Installing CIF” section.
1 Comment
Anonymous · October 2, 2015 at 12:06 am
Hi,
I had exactly the same issue. For the benefit of others – the command you mentioned didn't work for me, but this one did:
cpanm http://backpan.perl.org/authors/id/J/JS/JSTOWE/Linux-Cpuinfo-1.7.tar.gz –force
CIF now runs beautifully 🙂