Re: How to find processes from Python

2008-07-27 Thread Lawrence D'Oliveiro
In message <[EMAIL PROTECTED]>, Johny wrote: > Is there a way how to find out running processes?E.g. how many > Appache's processes are running? Under Linux, every process has a procfs directory /proc/, where is the process ID. In here you will find all kinds of interesting information about th

Re: How to find processes from Python

2008-07-25 Thread Gary Josack
Cameron Simpson wrote: On 25Jul2008 11:34, Johny <[EMAIL PROTECTED]> wrote: | Is there a way how to find out running processes?E.g. how many | Appache's processes are running? See the popen function and use the "ps" system command. Use of the popen functions is generally discouraged since be

Re: How to find processes from Python

2008-07-25 Thread Cameron Simpson
On 25Jul2008 11:34, Johny <[EMAIL PROTECTED]> wrote: | Is there a way how to find out running processes?E.g. how many | Appache's processes are running? See the popen function and use the "ps" system command. -- Cameron Simpson <[EMAIL PROTECTED]> DoD#743 http://www.cskk.ezoshosting.com/cs/ Whe

How to find processes from Python

2008-07-25 Thread Johny
Is there a way how to find out running processes?E.g. how many Appache's processes are running? Thanks for help. BB. -- http://mail.python.org/mailman/listinfo/python-list