Additions:
===Perl===
http://www.perlfoundation.org/
===CPAN - Comprehensive Perl Archive Network===
==CPAN Module Install==
To install extra perl modules [[http://search.cpan.org/ search]] for the perl module you want then download it, untar it and (make) install it.
%%
$ tar zxvf <module>
$ cd <module>
$ perl Makefile.PL
$ make
$ make test
%%
You probably have to su to root to install
%%
$ su -
# make install
%%
----
REFERRERS
{{backlinks}}
http://www.perlfoundation.org/
===CPAN - Comprehensive Perl Archive Network===
==CPAN Module Install==
To install extra perl modules [[http://search.cpan.org/ search]] for the perl module you want then download it, untar it and (make) install it.
%%
$ tar zxvf <module>
$ cd <module>
$ perl Makefile.PL
$ make
$ make test
%%
You probably have to su to root to install
%%
$ su -
# make install
%%
----
REFERRERS
{{backlinks}}
Deletions:
>>===Perl
Additions:
>>===Perl
Deletions:
==CPAN Module Install==
To install extra perl modules [[http://search.cpan.org/ search]] for the perl module you want then download it, untar it and (make) install it.
%%
$ tar zxvf <module>
$ cd <module>
$ perl Makefile.PL
$ make
$ make test
%%
You probably have to su to root to install
%%
$ su -
# make install
%%
==Debian & Xubuntu==
Use synaptic to install
%%
libnet-ssleay-perl - Perl module for Secure Sockets Layer (SSL)
%%
----
REFERRERS
{{backlinks}}
Additions:
>>http://www.perlfoundation.org/
>>===Perl & CPAN - Comprehensive Perl Archive Network===
==Debian & Xubuntu==
Use synaptic to install
libnet-ssleay-perl - Perl module for Secure Sockets Layer (SSL)
>>===Perl & CPAN - Comprehensive Perl Archive Network===
==Debian & Xubuntu==
Use synaptic to install
libnet-ssleay-perl - Perl module for Secure Sockets Layer (SSL)
Deletions:
http://www.perlfoundation.org/
===CPAN - Comprehensive Perl Archive Network===
Additions:
$ perl Makefile.PL
Deletions:
Additions:
$ tar zxvf <module>
$ cd <module>
$ Perl Makefile.PL
$ make
$ make test
You probably have to su to root to install
$ su -
# make install
$ cd <module>
$ Perl Makefile.PL
$ make
$ make test
You probably have to su to root to install
$ su -
# make install
Deletions:
# cd <module>
# ./Makefile.PL -t # builds and tests it
# make install # You probably have to su to root to do this