My suggestion to you would be to check your @INC paths. Try this snippet:
perl -e 'print $_,$/ for (@INC);'
The output for me (on my Slackware 8.0 box with perl 5.6.1) is:
tessai@clc-tessai(~))$ perl -e 'print $_,$/ for (@INC);' /usr/lib/perl5/i386-linux /usr/lib/perl5 /usr/lib/perl5/site_perl/i386-linux /usr/lib/perl5/site_perl /usr/lib/perl5/site_perl .
I'm guessing that the smbclient module (which I didn't know about, but now I'm going to search for) is installing itself in the wrong place. It may be assuming a newer version of Perl, or a certain @INC structure. I believe you can change the install paths when you run 'perl Makefile.pl' or by editing the Makefile directly (probably way too messy).

Update: Can you please post the relevant portion of the script you're running? Just the first few lines that contain the use statements. It may just be that you misspelled the name of the module (I've been bitten by that before).

Theodore Charles III
Network Administrator
Los Angeles Senior High
email->secon_kun@hotmail.com
perl -e "map{print++$_}split//,Mdbnr;"

In reply to Re: smbclient.pm problems by Necos
in thread smbclient.pm problems by NailBombJoe

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.