Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
8
votes
6answers
243 views

return code of system()

#include <stdlib.h> #include <string.h> #include <stdio.h> int main() { int res = system("ps ax -o pid -o command | grep sudoku | grep gnome > /dev/null"); printf("res = %d ...
6
votes
3answers
2k views

Kill a postgresql session/connection

How can I kill all my postgresql connections? I'm trying a rake db:drop but I get: ERROR: database "database_name" is being accessed by other users DETAIL: There are 1 other session(s) using the ...
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
418 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?
3
votes
3answers
1k views

Getting memory usage from 'ps aux' output with awk

I have to solve an exercise using awk. Basically I need to retrieve from 'ps aux' command the total of memory usage for each user and format like this: User Total%Mem user1 3.4% user2 ...
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
2answers
17 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
1answer
53 views

Sorting results of ps by start time

I'm displaying information about the current processes using this variety of the ps command: ps -eo pid,start,stime,command How can I sort these results by start? I've read man ps and tried -m, -r ...
2
votes
2answers
61 views

displaying original args after localizing $0

When run with arguments a b c d e f g, this script: system("ps ww$$"); { local $0 = "foo"; system("ps ww$$"); } system("ps ww$$"); prints something like: PID TTY STAT TIME COMMAND ...
2
votes
1answer
110 views

What is the equivalent of ps command in perl?

I am using ps -C <executable name> on Linux, but the same does not work on Windows. How can I perform the same check in Perl so that it is platform independent?
2
votes
6answers
197 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
130 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
583 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 ...
2
votes
1answer
480 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 ...
2
votes
1answer
199 views

How do I set the command line arguments in a C program so that it's visible when users type “ps aux”?

When you type "ps aux" the ps command shows command arguments that the program was run with. Some programs change this as a way of indicating status. I've tried changing argv[] fields and it doesn't ...
2
votes
2answers
583 views

How does ps show the argv for all processes on Mac OS X?

I'm trying to identify when a particular process is running, based on its arguments, on Mac OS X. There may be several processes running with the same name, but only one will have the arguments I'm ...
1
vote
1answer
19 views

Different terminal ids in ps and tty

The proccess I've started has a different terminal id from tty result. Is there some rule for that? Is there a way to find out what terminal id would programms have if I started them? ...
1
vote
2answers
62 views

Powershell script support for -verbose

I'm creating a .ps1 script which invokes Write-Verbose. I would like to be able to enable/disable these. I was hoping that I could pass the -Verbose flag when invoking the script and everything would ...
1
vote
1answer
150 views

Check if program is running with bash shell script?

This is an example of a bash script which checks for some running process (daemon or service) and does specific actions (reload, sends mail) if there is no such process running. check_process(){ ...
1
vote
2answers
124 views

Controlling window position of a Powershell console

This works: (Get-Host).UI.RawUI $a = (Get-Host).UI.RawUI $a.BackgroundColor = "white" $a.ForegroundColor = "black" $size = (Get-Host).UI.RawUI.WindowSize $size.Width = 80 $size.Height = 30 ...
1
vote
3answers
65 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
345 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
2answers
93 views

How to use the S-output-modifier with Unix/Linux command ps?

The command ps -o time -p 21361 works; however what I need is the running time of the process including all the children. For example, if 21361 is a bash script, which calls other scripts, then I ...
1
vote
1answer
45 views

How can i get my process back

I accidently closed my terminal window ( iTerm2 ) i am running OSX Lion, i just ran sudo port upgrade outdated and i was hoping i can get the output back on my terminal, the process didn't quit i ...
1
vote
1answer
34 views

Where could I find ready template files to code(just for fun and practice)?

I am looking for some finished templates psds to practice my coding skills. Do you know any websites where I could find some?
1
vote
3answers
463 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
1answer
236 views

How do I add a PostScript XObject to a PDF?

I am demoing an idea I have been playing around with, and while the Adobe specification says that including PS XObjects is not a good idea, some PDF readers should still support this functionality. ...
1
vote
1answer
175 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
1answer
367 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
250 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 | ...
1
vote
4answers
538 views

check number of running scripts using ps

I'm writing a script (show_volume.sh) which may be called several times in short intervals. I need a way determine whether there is more than just one running instance of this script. I figured I ...
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
237 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 ...
1
vote
3answers
122 views

ubuntu server PS, ifocnfig, command not working

i am working on ubuntu server from past few months and now suddenly ps, ifconfing commnad stop working with below error. user1@Fb1:/usr/bin$ ps -bash: /bin/ps: No such file or directory any ...
1
vote
1answer
367 views

Postscript number of copies

Is there a way to edit a postscript file, to add or increase the number of copies to be printed?
1
vote
1answer
69 views

Unable to find processes unused for half an hour

You can get underground processes by ps ux I am searching a way to find processes to which I have not touched for 30 minutes. How can you find processes unused for an half hour?
0
votes
0answers
25 views

latex to html with kile

I am using kile to convert a .tex file to html (latex to web) but when I look at the html page it does not show me the images. I tried including them in ps and png but still the html page does not ...
0
votes
4answers
40 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
0answers
44 views

PHP CLI very different process title on Debian 32 vs Ubuntu 64

I have two servers Debian Squeeze 32 and Ubuntu 11.10 Server 64. The same script with the same command behaves very different. Script test.php: <?php for ($i = 0; $i < 5; $i++) { echo $i, ...
0
votes
0answers
30 views

Highlight text and annotate ps files

I would like to know if it is possible to highlight text or make annotations to PS files or PS files converted to PDF format. For example, this file: [PS format] ...
0
votes
4answers
36 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
0answers
18 views

Jetform Service Restart from Remote [closed]

I tried restarting a Jetform service hosted in a remote computer, but it fails stating that the program is not availble as a installed service. But when I try the same script for restarting the ...
0
votes
1answer
44 views

php: ps_hyphenate not working [closed]

I'm trying to hyphenate words in php. I'm using the example provided by http://php.net/manual/en/function.ps-hyphenate.php <?php $word = "Koordinatensystem"; $psdoc = ps_new(); ...
0
votes
2answers
137 views

Offending Command error while Printing EPS

I am printing an EPS File generated with following credentials. %-12345X@PJL JOB @PJL ENTER LANGUAGE = POSTSCRIPT %!PS-Adobe-3.0 %%Title: InvoiceDetail_combine %%Creator: PScript5.dll Version 5.2.2 ...
0
votes
0answers
24 views

Excluding item in messagebox

I'm trying to copy several layers of folders over to a new folder structure but to have several windows message boxes pop-up with yes/no before the copy command takes place. Based on what the user ...
0
votes
0answers
49 views

Objective-C: Easily Extracting CPU Usage From A PID

I've seen various methods of doing this, but can't seem to find a concretely clear answer. I can simply call : //r = NSRunningApplication NSString *pullCPU = [NSString stringWithFormat:@"ps -p %d -o ...
0
votes
3answers
146 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
3answers
159 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
2answers
185 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 ...

1 2