<br><div><span class="gmail_quote">On 8/30/05, <b class="gmail_sendername">Greg Knaddison</b> <<a href="mailto:greg.knaddison@gmail.com">greg.knaddison@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On 8/29/05, Robert Hanson <<a href="mailto:roberth@abbacomm.net">roberth@abbacomm.net</a>> wrote:<br>> can anyone please comment on the rest of these please? i mean, what is some<br>> of this unrecognizable stuff??... at least for me eh?
<br><br><br>chkconfig --list | awk '{print $1}' | man<br><br>I know that doesn't work, but my point is: Take the list you made,<br>identify the items you don't know, "man" them.<br><br>For those that don't make sense, use a search engine to find the home
<br>page and read about it.<br><br>Still lost on some, ask about that remaining list of packages.  Asking<br>directly may be easier, but it won't help at 3:00 AM when the server<br>crashes because rpcsvcgssd is hogging all CPU because it freaked out
<br>and you don't know if you can shut it off safely...<br><br>Regards,<br>Greg<br>_______________________________________________<br>CentOS mailing list<br><a href="mailto:CentOS@centos.org">CentOS@centos.org</a><br><a href="http://lists.centos.org/mailman/listinfo/centos">
http://lists.centos.org/mailman/listinfo/centos</a><br></blockquote></div><br>
This is a little closer to your intent, Greg:<br>
<br>
for daemon in $( chkconfig --list | awk '{print $1}' | sed 's/://' ); do man $daemon; done<br>
<br>
The sed accounts for xinetd services.<br>
<br>
Of course, not every daemon has a man page....<br>
<br>
<br>