<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Abhishek&#039;s Blog</title>
	<atom:link href="http://abhishekisnot.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://abhishekisnot.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 25 Feb 2010 12:45:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='abhishekisnot.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Abhishek&#039;s Blog</title>
		<link>http://abhishekisnot.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://abhishekisnot.wordpress.com/osd.xml" title="Abhishek&#039;s Blog" />
	<atom:link rel='hub' href='http://abhishekisnot.wordpress.com/?pushpress=hub'/>
		<item>
		<title>FIVE SIMPLE STEPS TO INSTALL A PERL MODULE</title>
		<link>http://abhishekisnot.wordpress.com/2010/02/25/five-simple-steps-to-install-a-perl-module/</link>
		<comments>http://abhishekisnot.wordpress.com/2010/02/25/five-simple-steps-to-install-a-perl-module/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 12:45:29 +0000</pubDate>
		<dc:creator>abhishekisnot</dc:creator>
				<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://abhishekisnot.wordpress.com/?p=3</guid>
		<description><![CDATA[Whether it is Perl or Java, I believe in reusability, so for something which already exists; you don’t have to invest your valuable time in reinventing the wheel. For Perl, on CPAN you can see how many of wheels are already invented for you out there. Not everyone will allow you to have super-user or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekisnot.wordpress.com&amp;blog=12239501&amp;post=3&amp;subd=abhishekisnot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Whether it is Perl or Java, I believe in reusability, so for something which already exists; you don’t have to invest your valuable time in reinventing the wheel. For Perl, on <a title="Learn More about CPAN" href="http://www.cpan.org/misc/cpan-faq.html#What_is_CPAN">CPAN</a> you can see how many of wheels are already invented for you out there.</p>
<p>Not everyone will allow you to have super-user or admin access to the target systems, so I prefer maintaining my own repository of installed modules. To keep the things working in long run (believe me this reduces lots of efforts required for system maintenance), I follow below directory structure for Perl modules installation:</p>
<pre>~/abhishekisnot/</pre>
<p>Under this I have a directory to hold all the <code>tar.gz</code> files I obtain mostly from CPAN</p>
<pre>-- ~/abhishekisnot/downloads/   - </pre>
<pre>-- ~/abhishekisnot/install/</pre>
<p> &#8211; A target directory to expand or install the modules</p>
<p>Let’s see how to install a Perl module on UNIX like systems. Follow</p>
<p><strong><span style="text-decoration:underline;">FIVE SIMPLE STEPS TO INSTALL A PERL MODULE</span>:</strong></p>
<p>Step 1: scp/ftp the module to the target location.</p>
<pre>scp sample.tar.gz usename@hostname:abhishekisnot/downloads</pre>
<p>Step 2: Unzip &amp; Untar the archive</p>
<pre>gzip -dc sample.tar.gz | tar -xof – </pre>
<p>Step 3: Ask build to build the module in your custom location, and build the module</p>
<pre>perl Makefile.PL PREFIX=~/abhishekisnot/install</pre>
<pre>make</pre>
<pre>make test</pre>
<p>Step 4: Set the correct path for Perl to recognize your installation</p>
<pre>export PERL5LIB=$PERL5LIB:~/abhishekisnot/install/</pre>
<p>Step 5: Install the module</p>
<pre>make install</pre>
<p>And you are done. Congratulations <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Nonetheless, if you are interested in more details on the topic, do visit <a href="http://www.cpan.org/modules/INSTALL.html">What To Do Once You&#8217;ve Downloaded A Module</a>, by Jon Orwant on CPAN.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhishekisnot.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhishekisnot.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhishekisnot.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhishekisnot.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abhishekisnot.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abhishekisnot.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abhishekisnot.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abhishekisnot.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhishekisnot.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhishekisnot.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhishekisnot.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhishekisnot.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhishekisnot.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhishekisnot.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekisnot.wordpress.com&amp;blog=12239501&amp;post=3&amp;subd=abhishekisnot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abhishekisnot.wordpress.com/2010/02/25/five-simple-steps-to-install-a-perl-module/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/09a255256f570e36071859986e46be1e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abhishekisnot</media:title>
		</media:content>
	</item>
	</channel>
</rss>
