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/<pid>, where <pid> is the process ID. In here you will find all kinds of interesting information about the process command line, what files it has open, its environment, its memory usage etc. -- http://mail.python.org/mailman/listinfo/python-list