Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CPAN module install

Status
Not open for further replies.

jerehart

Programmer
Jun 10, 1999
61
US
I have tried to install a module into Net. it was TFTP for ftp(get put etc). When i ran make install it put it in its own directory in my /usr/local/bin but said it was placed into /user/local/lib/perl5/site_perl/5.005/sun4-solaris/auto/Net/TFTP/.packlist.  I have never installed an extra module but I did follow instructions in the Cookbook. What do I do now?
 
I'm not familiar with this particular module, but I've used many other modules in the past, and the principles are the same.<br><br>Because you've had to compile some code to native binaries as part of making the module, the &quot;make install&quot; places the module into the &quot;site_perl&quot; directory.&nbsp;&nbsp;This is to help you if you have multiple perl installations, all sharing a common NFS mounted &quot;lib/perl5&quot; directory.&nbsp;&nbsp;You won't try to run, say, a Solaris module under SCO Unixware.<br><br>So, the module should now be available for you to use.&nbsp;&nbsp;Try running &quot;perldoc Net::TFTP&quot; to view the on-line docs.&nbsp;&nbsp;To use the module in your code simply insert a &quot;use Net::TFTP&quot; line near the beginning of your code.&nbsp;&nbsp;Then follow the instructions provided with the module to actually use it.<br><br>Hope this helps. <p> <br><a href=mailto: > </a><br><a href= > </a><br>--<br>
0 1 - Just my two bits
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top