[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[cobalt-users] FIX for Error "NEW" / SPAMASSASSIN
- Subject: [cobalt-users] FIX for Error "NEW" / SPAMASSASSIN
- From: "Kevin \(WorldCops Web Services" <owner@xxxxxxxxxxxxx>
- Date: Sun Jul 21 15:55:00 2002
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
Someone else has posted that they had an error when running the
following:
#ssh into raq
su -
mkdir /tmp/spamassassin
cd /tmp/spamassin
wget
http://spamassassin.taint.org/released/Mail-SpamAssassin-2.31.tar.gz
wget http://www.cpan.org/modules/by-module/Pod/podlators-1.22.tar.gz
wget http://www.cpan.org/authors/id/DEWEG/Time-HiRes-01.20.tar.gz
wget http://www.cpan.org/modules/by-module/Pod/PodParser-1.18.tar.gz
tar -xzvf Mail-SpamAssassin-2.31.tar.gz
tar -xzvf PodParser-1.18.tar.gz
tar -xzvf Time-HiRes-01.20.tar.gz
tar -xzvf podlators-1.22.tar.gz
cd PodParser-1.18
(perl ./Makefile.PL make;make test;make install)
cd ../podlators-1.22
(perl ./Makefile.PL make;make install)
cd ../Time-HiRes-01.20
(perl ./Makefile.PL make;make test;make install)
cd ../Mail-SpamAssassin-2.31
(perl ./Makefile.PL make;make test;make install UNINST=1)
cd /tmp
rm -r spamassassin
FIX I HAD RAN FOR RAQ4i:
I added the following to the above instructions:
Wget http://www.cpan.org/modules/by-module/Pod/Pod-Coverage-0.11.tar.gz
Tar -zxvf Pod-Coverage-0.11.tar.gz
Cd Pod-Coverage-0.11
(perl ./Makefile.PL make;make install)
When running [root podlators-1.22]# perl ./Makefile.PL make;make install
You may see the following errors:
Writing /usr/lib/perl5/site_perl/5.005/i386-linux/auto/Pod/.packlist
## Differing version of Pod/Text.pm found. You might like to
rm /usr/lib/perl5/5.00503/Pod/Text.pm
## Running 'make install UNINST=1' will unlink this file for you.
Appending installation info to
/usr/lib/perl5/5.00503/i386-linux/perllocal.pod
Do the Following:
[root podlators-1.22]# rm /usr/lib/perl5/5.00503/Pod/Text.pm
[root podlators-1.22]# perl ./Makefile.PL make;make install
It will now update the version needed of Text.pm
And it will now work to identify the "new" that stops the package for
SpamAssassin.
Kevin