Link to home
Start Free TrialLog in
Avatar of c_hockland
c_hocklandFlag for Greece

asked on

question in installing files in linux

I need to install these modules on the server

The following perl modules have been added to Server A:
Net::MySQL
Text::CSV_XS
Spreadsheet::WriteExcel
Spreadsheet::ParseExcel
Excel::Writer::XLSX

For all dependencies to be met, below is the complete list of modules installed.
Archive-Zip-1.30
Bit-Vector-7.2
Carp-Clan-6.04
Compress-Raw-Zlib-2.060
Crypt-RC4-2.02
Date-Calc-6.3
Date-Manip-6.39
Digest-Perl-MD5-1.8
Digest-SHA1-2.13
Excel-Writer-XLSX-0.66
ExtUtils-MakeMaker-6.64
IO-1.25
IO-stringy-2.110
Net-MySQL-0.11
OLE-Storage_Lite-0.19
Parse-RecDescent-1.967009
Spreadsheet-ParseExcel-0.59
Spreadsheet-WriteExcel-2.38
Storable-2.39
Test-Exception-0.31
Test-Inter-1.05
Text-CSV_XS-0.97



I am attaching  a screenshot of some of the files i see at this folder on the server.

How do install them ?

Any help would be appreciated.
files.gif
Avatar of ozo
ozo
Flag of United States of America image

cpan Archive::Zip
cpan Bit::Vector
cpan Catp::Clan
cpan Compress::Raw::Zlib
cpan Crypt::RC4
cpan Date::Calc
cpan Date::Manip
cpan Digest::Perl::MD5
cpan Digest::SHA1
cpan Excel::Writer::XLSX
cpan ExtUtils::MakeMaker
cpan IO::stringy
cpan Net::MySQL
cpan OLE::Storage_Lite
cpan Parse::RecDescent
cpan Spreadsheet::ParseExcel
cpan Spreadsheet::WriteExcel
cpan Storable
cpan Test::Exception
cpan Test::Inter
cpan Text::CSV_XS
Avatar of c_hockland

ASKER

Hi ,

i am getting this


CPAN.pm needs at least one URL where it can fetch CPAN files from.

Please enter your CPAN site: []
I am also getting


Not connected.
Bad luck... Still failed!
Can't access URL ftp://ftp.perl.org/pub/CPAN/modules/03modlist.data.gz.
How did you install the modules that have already been added?
someone copied them to another server. Then he asked me to transfer these files to the rest of the servers and install them.
can you try
cd Net-MySQL-0.11
perl Makefile.PL
make
seems it worked


[root@bebea121 temp]# cd Net-MySQL-0.11
[root@bebea121 Net-MySQL-0.11]# perl Makefile.PL
Checking if your kit is complete...
Looks good
Writing Makefile for Net::MySQL
[root@bebea121 Net-MySQL-0.11]#
[root@bebea121 Net-MySQL-0.11]# make
cp MySQL.pm blib/lib/Net/MySQL.pm
Manifying blib/man3/Net::MySQL.3pm
[root@bebea121 Net-MySQL-0.11]#
how can i proceed with the rest  ?
ASKER CERTIFIED SOLUTION
Avatar of ozo
ozo
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thanks Ozo. it all worked just fine.