How to find perl module and install it under Ubuntu?
1) You have to find the package of this module.
For example, I want to install GEO::IPfree module for enable IPfree plugin in Awstats.
sudo apt-cache search perl geo::ipfree
2) It will return the package name as below:
libgeo-ipfree-perl
3) Now I can install this module by following command:
sudo apt-get install libgeo-ipfree-perl
Done.


Very helpful, worked first time. Thanks.
Just what I needed. Thanks.
Your post was extremely helpful in resolving a problem I had with installing a Perl application. Thank you very much for posting this solution, I will definitely share your information with my friends. Awesome work!
after installing libapache2-mod-perl2 on ubuntu, how do i enable the mudule in apache? maybe i am stupid?
Thanks! This is very helpful.