web-dev-qa-db-ja.com

構成サーバーファイアウォール:不足しているPerlモジュールをインストールしてから、cxsをインストールする必要があります

構成サーバーファイアウォールをインストールしようとしていますが、チュートリアルに従ってinstall.shを実行すると、次のエラーが発生します。誰か助けてもらえますか?

root@localhost:~/csf# sh install.sh

Configuring for OS

Running csf generic installer

Installing generic csf and lfd

Check we're running as root

Checking Perl modules...
Can't locate LWP/UserAgent.pm in @INC (@INC contains: /etc/csf /etc/Perl /usr/local/lib/Perl/5.14.2 /usr/local/share/Perl/5.14.2 /usr/lib/Perl5 /usr/share/Perl5 /usr/lib/Perl/5.14 /usr/share/Perl/5.14 /usr/local/lib/site_Perl .) at (eval 22) line 2.
BEGIN failed--compilation aborted at (eval 22) line 2.
Configuration modified for Debian/Ubuntu/Gentoo settings /etc/csf/csf.conf

You need to install the missing Perl modules and then install cxs
root@localhost:~/csf# 

Linux localhost 3.2.0-1-AMD64#1SMPを実行しているImJan 24 05:01:45 UTC 2012 x86_64 GNU/Linux Debian 6

1
h00j

libwww-Perlをインストールする必要があります。

Sudo aptitude install libwww-Perl

OR

Sudo Perl -MCPAN -e 'install Bundle::LWP'

OR

wget http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/libwww-Perl-6.04.tar.gz
tar xzf libwww-Perl-6.04.tar.gz
cd libwww-Perl-6.04
Perl Makefile.PL
make
Sudo make install
3
Yohann