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 ...
4
votes
3answers
429 views

Getting The Full Result from “ps”

How do I get the full width result for the *nix command "ps"? I know we can specify something like "--cols 1000" but is there anyway I can the columns and just print out everything?
2
votes
1answer
650 views

Find out how long a process is sleeping in Linux?

Basically I want to have all processes that have been sleeping for more than one hour. I know that there is etime in ps, but sadly it shows the overall lifetime. How can this be done under linux ...
1
vote
3answers
70 views

Process Management w/ bash/terminal

Quick bash/terminal question - I work a lot on the command line, but have never really had a good idea of how to manage running processes with it - I am aware of 'ps', but it always gives me an ...
1
vote
2answers
414 views

What does TTY mean in the unix ps command?

When I run PS one of the columns output is TTY. What does this mean? In particular, how does as value of "??" compare with "ttys000"? I ask because I have a Java program execute sort via ...
1
vote
1answer
393 views

Bash/ps: get pid of a running “myscript.sh” child of a certain process

in bash I need to get the pid of a running process whose I know name and parent pid. In ps' manual I read you can select processes using such arguments: --ppid <pidlist> and -C ...
1
vote
2answers
261 views

restart a php script using shell script

i am using shell script to monitor the working of a php script. My aim is that this php script should not sleep / terminated and must always be running.The code i used is - ps aux | grep -v grep | ...
0
votes
4answers
49 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
4answers
46 views

How to examine processes in OS X's Terminal?

I'd like to view information for processes running in OS X. Running ps in the terminal just lists the open Terminal windows. How can I see all processes that are running? Say I'm running a web ...
0
votes
3answers
228 views

How to display the current process tree of a bash session?

I would like to create a bash alias that gives me the process tree from the current bash session I am using, up to init. The use case is to know whether I have used bash or vi's :shell command. I am ...
0
votes
6answers
157 views

Echo ps while preserving newlines?

If I do ps ax in Terminal, the result will be like this: PID TT STAT TIME COMMAND 1 ?? Ss 2:23.26 /sbin/launchd 10 ?? Ss 0:08.34 /usr/libexec/kextd 11 ?? Ss ...
0
votes
4answers
305 views

Multiple processes with the same name

I have an application running on Linux 2.6.13 and WindRiver Linux 3.0. In Linux 2.6.13 when i do ps -eaf | grep myapplication the output show multiple entries of 'myapplication' if i give the same ...
0
votes
0answers
298 views

get exact argument list of a process using ps

I am writing a session saver for GNU Screen. It needs to get every process argument list. Linux has /proc/PID/cmdline which separates arguments with \0. Solaris has pargs. But I am looking for a more ...