Link to home
Start Free TrialLog in
Avatar of uknet80
uknet80

asked on

perl-CPAN for RHEL5

hi all,

where can i get perl-CPAN for RHEL5, it is available for RHEL6 but not for RHEL5?

thanks
ASKER CERTIFIED SOLUTION
Avatar of Amick
Amick
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
SOLUTION
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
Avatar of uknet80
uknet80

ASKER

I following this:

perl -MCPAN -e 'shell'
    cpan> install Bundle::CPAN
    cpan> reload cpan

It seams it worked, how can i make sure if installed.
Try:
$ which cpan
             /usr/bin/cpan
$ /usr/bin/cpan -v
            /usr/bin/cpan script version 1.9, CPAN.pm version 1.9402

Open in new window


If cpan is in your executable path, simply typing cpan will start the program.
Avatar of uknet80

ASKER

i have installed Net::LDAP same way you told me

perl -MCPAN -e 'shell'
    cpan> install Net::LDAP
    cpan> reload cpan

how to make sure it is installed?
SOLUTION
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
Avatar of uknet80

ASKER

thanks guys