Tagged Questions
16
votes
7answers
6k views
Is there a way to change effective process name in Python?
Can I change effective process name of a Python script? I want to show a different name instead of the real name of the process when I get the system process list. In C I can set
...
3
votes
3answers
2k views
Processlist
How do I get a process list of all running processes from Python, on Unix, containing then name of the command/process and process id, so I can filter and kill processes.
2
votes
1answer
482 views
subprocess pid different from ps output
Why is it that the subprocess pid (Popen.pid) has different value from that the ps command returns?
I've noticed this when ps called both from inside python (with subprocess.call()) and from another ...
1
vote
1answer
177 views
Is there a way to extract text information from a postscript file? (.ps .eps)
I want to extract the text information contained in a postscript image file (the captions to my axis labels).
These images were generated with pgplot. I have tried ps2ascii and ps2txt on Ubuntu but ...
1
vote
4answers
1k views
Is there any way to get ps output programmatically?
I've got a webserver that I'm presently benchmarking for CPU usage. What I'm doing is essentially running one process to slam the server with requests, then running the following bash script to ...
0
votes
4answers
42 views
Changing Process Name using Shell
I have a python script to start a process which I want to monitor using Nagios. When I run that script and perform ps -ef on my ubuntu EC2 instance, it shows process as python <filename>.py ...
0
votes
1answer
37 views
Avoid related processes in process listing
How can I generate a process listing, that does not include the current process, its shell and any related processes in the process group, and the SSHD process generated to handle the session?
Does ...