Re: [newbie] Installed perl modules list

2004-12-17 Thread yankl
On Thursday 16 December 2004 21:24, Chris wrote:
 I've installed all my perl modules via webmin.  I'm going to be upgrading
 to 10.1 during the holidays and want to have a list available of what I've
 installed already.   Is there a file that has these listed?  I'd rather
 print out a file than do a screen print from webmin.

rpm -q will give you a list of all files you have currently. so from cli

$rpm -q  allfiles.txt

or if you need only perl files

$rpm -q | grep perl  allperlfiles.txt 
-- 
Yankl
Tiny IT guy.
100 % Micro$oft free.
Registered linux users 181086
URL: http://yankele.com
---
To mess up a Linux box, you need to work at it; to mess up your Windows
box, you just need to work on it.


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Installed perl modules list

2004-12-17 Thread RickSisler
yankl ([EMAIL PROTECTED]) wrote:
 On Thursday 16 December 2004 21:24, Chris wrote:
  I've installed all my perl modules via webmin.  I'm going to be upgrading
  to 10.1 during the holidays and want to have a list available of what I've
  installed already.   Is there a file that has these listed?  I'd rather
  print out a file than do a screen print from webmin.
 
 rpm -q will give you a list of all files you have currently. so from cli
 
 $rpm -q  allfiles.txt
 
 or if you need only perl files
 
 $rpm -q | grep perl  allperlfiles.txt 
yankl, 
$ rpm -q | grep perl
rpmq: no arguments given for query

so minor correction: add -a for all
may want to sort it too,
$ rpm -qa |grep perl |sort  perlrpms.txt 

-- 
RickS  Registered Linux user #338463
Mdk 10.1 OE - Linux 2.6.8.1-12mdk@ http://counter.li.org

gpg --recv-keys --keyserver www.keyserver.net 0x24AABE61


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Installed perl modules list

2004-12-17 Thread yankl
On Friday 17 December 2004 18:36, RickSisler wrote:
 yankl ([EMAIL PROTECTED]) wrote:
  On Thursday 16 December 2004 21:24, Chris wrote:
   I've installed all my perl modules via webmin.  I'm going to be
   upgrading to 10.1 during the holidays and want to have a list available
   of what I've installed already.   Is there a file that has these
   listed?  I'd rather print out a file than do a screen print from
   webmin.
 
  rpm -q will give you a list of all files you have currently. so from cli
 
  $rpm -q  allfiles.txt
 
  or if you need only perl files
 
  $rpm -q | grep perl  allperlfiles.txt

 yankl,
 $ rpm -q | grep perl
 rpmq: no arguments given for query

 so minor correction: add -a for all
 may want to sort it too,
 $ rpm -qa |grep perl |sort  perlrpms.txt

Sorry my fall just had long week.
-- 
Yankl
Tiny IT guy.
100 % Micro$oft free.
Registered linux users 181086
URL: http://yankele.com
---
To mess up a Linux box, you need to work at it; to mess up your Windows
box, you just need to work on it.


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Installed perl modules list

2004-12-17 Thread Chris
On Friday 17 December 2004 05:39 pm, yankl wrote:
 On Friday 17 December 2004 18:36, RickSisler wrote:
  yankl ([EMAIL PROTECTED]) wrote:
   On Thursday 16 December 2004 21:24, Chris wrote:
I've installed all my perl modules via webmin.  I'm going to be
upgrading to 10.1 during the holidays and want to have a list
available of what I've installed already.   Is there a file that
has these listed?  I'd rather print out a file than do a screen
print from webmin.
  

Thanks both of you, however thats not the output I'm really looking for.  It 
shows perl modules installed, yes, but, not the ones I've installed via 
cpan using webmin.  For instance, I'm running SpamAssassin 3.0.1, all that 
is shown in the output is SA 2.41.  So, is there any file that holds the 
listing of what I've installed with cpan via webmin?

-- 
Chris
Registered Linux User 283774 http://counter.li.org
6:31pm up 19 days, 3:48, 1 user, load average: 0.40, 0.32, 0.16

Have you locked your file cabinet?




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Installed perl modules list

2004-12-17 Thread RickSisler
Chris ([EMAIL PROTECTED]) wrote:
 On Friday 17 December 2004 05:39 pm, yankl wrote:
  On Friday 17 December 2004 18:36, RickSisler wrote:
   yankl ([EMAIL PROTECTED]) wrote:
On Thursday 16 December 2004 21:24, Chris wrote:
 I've installed all my perl modules via webmin.  I'm going to be
 upgrading to 10.1 during the holidays and want to have a list
 available of what I've installed already.   Is there a file that
 has these listed?  I'd rather print out a file than do a screen
 print from webmin.
   
 
 Thanks both of you, however thats not the output I'm really looking for.  It 
 shows perl modules installed, yes, but, not the ones I've installed via 
 cpan using webmin.  For instance, I'm running SpamAssassin 3.0.1, all that 
 is shown in the output is SA 2.41.  So, is there any file that holds the 
 listing of what I've installed with cpan via webmin?
Sorry Chris, don't have any perl or CPAN experience and only minimal
webmin, which I havent used since 9.2, but found this on CPAN.org

http://www.cpan.org/misc/cpan-faq.html#What_is_CPAN
with the topic of:
How do I find out what modules are already installed on my system?

HTH
Might get ya started ... When in doubt .. get the FAQ's 8)
-- 
RickS  Registered Linux user #338463
Mdk 10.1 OE - Linux 2.6.8.1-12mdk@ http://counter.li.org

gpg --recv-keys --keyserver www.keyserver.net 0x24AABE61


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



Re: [newbie] Installed perl modules list

2004-12-17 Thread Chris
On Friday 17 December 2004 09:09 pm, RickSisler wrote:

  Thanks both of you, however thats not the output I'm really looking
  for.  It shows perl modules installed, yes, but, not the ones I've
  installed via cpan using webmin.  For instance, I'm running
  SpamAssassin 3.0.1, all that is shown in the output is SA 2.41.  So, is
  there any file that holds the listing of what I've installed with cpan
  via webmin?

 Sorry Chris, don't have any perl or CPAN experience and only minimal
 webmin, which I havent used since 9.2, but found this on CPAN.org

 http://www.cpan.org/misc/cpan-faq.html#What_is_CPAN
 with the topic of:
 How do I find out what modules are already installed on my system?

 HTH
 Might get ya started ... When in doubt .. get the FAQ's 8)

Thanks Rick, found exactly what I needed.  There was a little perl script 
there that after a slight mod to the path statement, gave me list of what 
has been installed.

Appreaciate it.

-- 
Chris
Registered Linux User 283774 http://counter.li.org
10:05pm up 19 days, 7:23, 1 user, load average: 0.20, 0.16, 0.13

Recursion is the root of computation since it trades description for time.




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com



[newbie] Installed perl modules list

2004-12-16 Thread Chris
I've installed all my perl modules via webmin.  I'm going to be upgrading to 
10.1 during the holidays and want to have a list available of what I've 
installed already.   Is there a file that has these listed?  I'd rather 
print out a file than do a screen print from webmin.

-- 
Chris
Registered Linux User 283774 http://counter.li.org
8:22pm up 18 days, 5:40, 1 user, load average: 0.66, 0.58, 0.56

Hmmm ... A hash-singer and a cross-eyed guy were SLEEPING on a deserted
island, when ...

Live - From Virgin Radio UK Queen and David Bowie - Under Pressure



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com
Join the Club : http://www.mandrakeclub.com