Tulsi


I found a place on the web that sold varieties of imported basil. They sold one they called "Holy basil". Turns out it is Tulsi. I spread the seeds out in a planter this summer and ... Here is the result. Now the question is how do I get this to last through the winter?
Posted by Picasa

User CPAN installation broken

Here is a workaround for a common problem. You do not have root access to perl but want to install perl libraries. Normally the user can use CPAN with local libraries (PERL5LIB). Sometimes CPAN gets comfused and you get an error like this: Your configuration suggests "/root/.cpan" as your CPAN.pm working directory. I could not create this directory due to this error: mkdir /root/.cpan: Permission denied at /data/eva/perl/lib/perl5/site_perl/5.8.0/CPAN.pm line 552 I google around and found this solution:

Execute the following procedure (it worked for me, though I am not sure if all steps are necessary): 1. Create a directory for the perl modules in your HOME $ mkdir ~/perl5lib 2. Create ~/.cpan and ~/.cpan/CPAN directories: $ mkdir ~/.cpan $ mkdir ~/.cpan/CPAN 3. Create a Config.pm for the CPAN module with $CPAN::Config empty $ echo "\$CPAN::Config = {}"> ~/.cpan/CPAN/MyConfig.pm 4. Execute again: $ perl -MCPAN -e shell This time (if all goes well) it will prompt you for the empty fields in $CPAN::Config.