Tagged Questions

4
votes
1answer
150 views

Follow pids across machines (ssh)

I am basically trying to write a pstree-like command except that it should follow processes across machines. What I mean is that if I run this : $ ssh $node sleep 1000 Then the command should ...
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
2answers
24 views

Debugging postgreSQL server process (how to identify the correct process id)

I have written a C extension library for PG, using V1 calling convention. My db is ver 8.4. I have successfully created the new functions. However, when I invoke my new functions, it crashes the ...
2
votes
6answers
221 views

Kill a process from Linux Application

What is best and most efficient way to find pid of a specific task. Say: ps -ef | grep "\/usr\/sbin\/watchdog" | cut -d" " -f2 Is there any more efficient way to find the same. I want to kill the ...
2
votes
2answers
134 views

Group processes with ps

I want to use ps on my desktop through geektools to see what processes are using what. Currently my command is: ps -amcwwwxo "command %mem %cpu" | grep -v grep | head -13 The problem with this, is ...
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
39 views

using “ps” to find processes in a time range

How can I find started processed within last 5 hours? Can ps do that? I have to use ps -ef | grep <username> which shows all process for . Then I have to manually look at STIME columns
1
vote
3answers
552 views

ps utility in linux (procps), how to check which CPU is used

It is about procps package, utility ps for linux. Can it print the number of last used CPU for each process (thread)? Update: Not a CPU Time (10 seconds), but a CPU NUMBER (CPU0,CPU5,CPU123)
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 ...
1
vote
2answers
257 views

Generating a CSV list from Linux 'ps'

Suppose I have a ps command that looks like this: ps -Ao args:80,time,user --sort time It will give me a "space" separated set of rows. A row might look like this paulnath -bash 00:00:00 I ...
0
votes
3answers
191 views

Linux ps output format spec

I am using Java API to connect my Remote Machine so I can see the running processes. One of the requirements is to be able to kill any of the processes. Now I am executing command ps aux | grep ...
0
votes
2answers
224 views

Why does ps o/p list the grep process after the pipe?

When I do $ ps -ef | grep 'cron' I get root 1036 1 0 Jul28 ? 00:00:00 cron abc 21025 14334 0 19:15 pts/2 00:00:00 grep --color=auto cron My question is why do I see the ...
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 ...
0
votes
2answers
358 views

Need explanation on pri standard format specifier for ps - possible bug in documentation

Note on pri from ps man page: "pri PRI priority of the process. Higher number means lower priority" Consider PID 26073 here $ renice +15 26073 26073: old priority 5, new priority 15 # I ...
0
votes
2answers
340 views

Android list process

I was wondering how can I check the last application executed by the user in Android Phone (in terminal). I was checking with ps command but no timestamp is shown. What I want to get is the PID of the ...
0
votes
3answers
597 views

linux : Finding the postgres idle process originator

Actually , I am running four daemon program. It makes postgres connection, and it disconnects once through with the stuffs. But When I am putting ps aux , there are lot of postgres idle process being ...
0
votes
4answers
302 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
2answers
345 views

How to get a process tree trace/log of a process in linux?

I want to know what executables a script launches and in what order (and trace those executables recursively). For example, let's say I have a bash script here (called abc.sh): #!/bin/bash ls gcc ...
0
votes
1answer
745 views

What does it mean WCHAN 'finish' in ps -l <proc_id> output?

I'm running a number of ssh commands in a background. When the triggered-via-ssh command finishes to run, the appropriate background ssh process doesn't get terminated and its ps -l output shows ...