PS can refer either to the UNIX process-information command, or as a file type-extension it refers to the Postscript language created by Adobe Systems.

learn more… | top users | synonyms

0
votes
0answers
18 views

Groovy process not working with linux shell (grep and awk and ps)

Process proc1 ='sh -c ps -ef'.execute(); Process proc2 ='sh -c grep sleep.sh '.execute(); Process proc3 ='sh -c grep -v grep '.execute(); Process proc4 ='sh -c awk sleep.sh '.execute(); Process all = ...
0
votes
0answers
45 views

android execute c program

I have an android app which calls a C program. The C program while running returns some results via printf() which should be read in by the app. The problem is when I run the C program in the adb ...
0
votes
1answer
21 views

PHP: How to write a message to show up in 'ps' command?

If I write a Bash shell program with a sleep statement, I can do the following to check on it's status: ps aux | grep sleep If I have a sleep occur for a long period of time, such as 10 minutes in ...
0
votes
1answer
25 views

What does this paragraph in the ps man page mean? [closed]

I could not understand the following description: a Lift the BSD-style "only yourself" restriction, which is imposed upon the set of all processes when some ...
1
vote
1answer
28 views

Iterate through rows in awk and append string

Please can you tell me how I can iterate through each of the rows found in the output of ps axo %mem,pid,euser,cmd | sort -nr | head -n 10 so that new output contains the string "new_line" at the end ...
-1
votes
0answers
22 views

Linux Command to display only mingetty's info [migrated]

I am looking for a command that will give only mingetty's information. How can you construct the command to find only mingetty data and find the PPID in Linux?
3
votes
3answers
44 views

Bash generic “ps aux” process by strict name

I'm trying to have a ps aux command listing only real ssh-agent process. I've noticed that on some distros, I have unwanted process showing up, like command colors and such. I need to do this because ...
0
votes
0answers
18 views

convert .ps code to php to make a new array with results from existing array

I have below code snippet. I want to do this with php! May be some great coder can help on this. public static List<FacebookFriends> GetFriendList() { string fl = ...
0
votes
0answers
23 views

Semaphores Interaction Using: semop,V(S), & P(S)

Let's say a semaphore(bm) has been put to wait or sleep, after P(bm). This means that in my case its sem_op=-1 and absolute value of sem_op > semval. The current semval=0 and sem_op=-1. Process goes ...
1
vote
1answer
14 views

How to convert ps to same-looking pdf file?

I have a ps file consisting of several pages, with the following entry for the bounding box: %%PageBoundingBox: 36 36 7164 2124 When viewing this file with okular it looks ok. After the conversion ...
0
votes
1answer
50 views

linux RSS from ps RES from TOP

Linux : RedHat/Fedora What is the difference between these memory values: RES from top command RSS from ps command
0
votes
1answer
61 views

How to prevent ps2eps from rotating pages

I want to convert some single page postscript files to eps. They are from the same source multiple page ps file, extracted with psselect. Some of the pages (the short ones) are rotated (by 90° to the ...
0
votes
2answers
39 views

Create a list of process ordered by status

I need create a shell script to list the process by status type. The output must be something like: Process running: [process] Process sleeping: [process] ETC I did this, but doesnt work the ps ...
0
votes
2answers
176 views

get process id through Perl script

In my script, I am executing cat, then trying to grep to get the process id. I used this : ps | grep -e \'cat$\' | cut -d\' \' -f2 | head -n 1 but it's not returning anything.
0
votes
3answers
82 views

Using bash ps and cut together

I need to extract PID, UID and command fields from 'ps' and I have tried it like this: ps -L u n | cut -f 1,2,13 For some reason, this behaves as there is no cut command whatsoever. It just returns ...
-1
votes
3answers
53 views

What do I do instead of grep'ing the output of ps?

Everyone knows how annoying this is: [mybox:~ #] ps aux | grep myservice root 2273 0.0 0.0 4360 760 ? Ss 18:06 0:00 /usr/sbin/myservice root 18590 0.0 0.0 4100 788 ...
0
votes
1answer
49 views

ps get actual exe name in output when process is started using a symlink [closed]

I have an exe program.bin. If this is started by ./program.bin, the ps -o pid,comm shows it correct in the process name. If I create a soft link to program.bin, say start_the_progran.bin and run ...
1
vote
1answer
37 views

Unable to see processes using ps comand when I configure terminal to auto load my .bashrc

My default login shell is bash. From a few online forums, I configured my terminal to auto load my .bashrc file whenever I open the terminal by adding: source ~/.bashrc in .bash_profile OR by ...
0
votes
1answer
56 views

How to reduce PCL file size when we use gs command to convert ps to pcl file

I am converting a PDF file to a PS file using ghostscript.Size of PS file is normal but when I convert PS file to PCL file then size becomes very large. I have tried many options with gs command to ...
0
votes
1answer
64 views

how to add column to ps cammand linux freebsd and develop it?

How can I display a new column output from the ps command in FreeBSD? Should I change ps.c or print.c in following directory, re-build the kernel and install it? usr/src/bin/ps which part of code ...
0
votes
2answers
257 views

Linux : Get total cpu usage by httpd

I need to display the total Percentage of CPU utilized by httpd processes on a server in a php report. I am calling following from exec : ps -e -o %mem,%cpu,cmd | grep httpd | awk ' ...
1
vote
0answers
181 views

ssh from linux to mac OS X 10.8.2 and avoid _RegisterApplication(), FAILED TO establish the default connection [closed]

After using linux box to ssh to a Mac ssh user@macbox I obtain the following error user $ ps2pdf sample.eps user $ _RegisterApplication(), FAILED TO establish the default connection to the ...
3
votes
3answers
139 views

How do I get the full path for a process on OS X?

I know that I can get the PID for a process by using ps, but how to a find the full path of that process?
0
votes
1answer
119 views

ps, display pid and argv parameters without full command name?

I'm running under debian squeeze, and need to get processes list in very specific format. Processes are started in following way: /$script -- $param Hereinafter I will call $script as "test.sh", so ...
0
votes
3answers
133 views

Bash how to get full script name from PID

I have this php function that checks the script's name from the given PID, and compares it to itself. function isRunning($pid) { $filename = exec('ps -p '.$pid.' -o "%c"'); $self = ...
0
votes
1answer
130 views

Get Process's cpu, thread, vsize, and rsize in MAC OSX

I want to know the CPU,thread, VSize, Rsize of a process based on its PID.So i was using top -i 1 -l 1 command and grepping the corresponding values.But top differs form MAC 10.5 to 10.7 .Is there any ...
1
vote
2answers
43 views

Give somekind of signature/identifier to a Java process

Is there a way to start my Java process that I can easily identify it, from another program that runs a ps in the system?
0
votes
1answer
62 views

Code to use NSTask with ps to verify a process is running

I am having endless problems checking to see if the screen saver is running. If I use an NSTask with ps, it crashes or hangs on a lot of users. If I use notifications it seems to be spotty for others. ...
0
votes
1answer
116 views

How to orthogonalize a non-orthogonal matrix using HLSL?

I'm just wondering whether this can be done in ps shader.I have an non-orthogonal matrix and need to orthogonalize it and using inverse-​transpose result.I turned to matlab for help,only found their ...
2
votes
7answers
208 views

How to pipe all the output of “ps” into a shell script for further processing?

When I run this command: ps aux|awk {'print $1,$2,$3,$11'} I get a listing of the user, PID, CPU% and the actual command. I want to pipe all those listings into a shell script to calculate the CPU% ...
5
votes
2answers
174 views

view output of already running processes in linux

I have a process that is running in the background (sh script) and I wonder if it is possible to view the output of this process without having to interrupt it. The process ran by some application ...
0
votes
3answers
1k views

Find th Process run by nohup command

I run a server executable in Centos using the following command "nohup server &". Now I need to kill the process "server". But I tried "ps -a" command to get the PID but I couldnt get the process. ...
2
votes
1answer
53 views

PSNUP, Converting 1st Page only

I am trying to use PSNUP to Shrnk my PS file but it is effective on 1st page only, and not working on o Anybody who knows may help please. MY sample File can be downloaed from :- ...
0
votes
2answers
72 views

Memory usage with high precision

How can I get high precision memory usage per proccess with "ps aux"? $ ps aux USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND root 1 0.0 0.0 3672 1984 ? ...
3
votes
1answer
48 views

Cleaning up this command

I was wondering how I could reduce the amount of grep or pipes used in this command. ps h -eo pid:1,uid,command | grep -v "screen" | grep java | grep -v "bash" | grep -v "grep" Could it be reduced? ...
0
votes
1answer
141 views

Combine 2 postscript file into pdf

What I am trying to do is combine two postscript files into a pdf. I have already tried using ghostscript to combine them however the issue with that is ghostscript produces a pdf with one ps file on ...
1
vote
1answer
291 views

How to find port number for a particular process id in unix?

In UNIX OS, how can I find the port number when i know the process name or pid ?
0
votes
1answer
32 views

How should i know the phone that has the specified arguments is the hdpi or ldpi

As the titles,the following is some arguments of the psd of my phone: The width pixels: The height pixels: The width of document is:13.333 inch The height of document is :7.5 inch so the dpi will be ...
0
votes
1answer
75 views

pdf to searchable ps

I know people have asked similar question but couldn't find an answer to this. I have a pdf file that was produced using pdflatex. It is searchable (you can press ctrl+f and search for words inside) ...
0
votes
1answer
279 views

Exclude get-eventlog (powershell)

I have a report that gets generated by a script in powershell, it reports to me the event-logs of multiple servers. I didn't make the script, my former colleague did this. I'm new to powershell and ...
-1
votes
1answer
261 views

understanding ps linux command result [closed]

When I run the ps -ef command I receive something like this: root 26728 26725 99 Sep25 ? 1184018564-02:43:14 java -jar /root/TaskManager.jar I need to understand what is the value 99 and ...
0
votes
2answers
558 views

ps2pdf Unrecoverable error

I have an unrecoverable error, exit code 1 showing up when I try to convert my .ps files to pdf. It worked just about a half hour ago and now it wont. The file is there! Error: /undefinedfilename in ...
0
votes
1answer
645 views

Meaning of columns from ps

In Linux bash, what do the four columns mean from ps? e.g PID TTY TIME CMD 15286 pts/498 00:00:00 bash 30887 pts/498 00:00:00 ps
0
votes
1answer
164 views

how to check if a process in uninterruptable on Solaris

which ps option on Solaris 11g gives information if a process is in uninterruptable sleep mode? admin@starsut:/tmp$ ps -aef | grep java UID PID PPID C STIME TTY TIME CMD oracle 1465 ...
1
vote
0answers
62 views

how to identify page boundries in a .prn file of multiple page job

Can someone help me to identify the page boundaries in a multiple page job .prn file ? My goal is to use a PJL command @PJL SET MEDIASOURCE=TRAYX at the start of every page of a multiple job file. ...
3
votes
2answers
1k views

How to adjust BoundingBox of an EPS file?

I want to crop main area of a PS or PDF file to create an EPS file without white space. Commands of ghostrcipt, ps2pdf, epstools can crop the main drawing out of the document file. The problem is ...
3
votes
3answers
436 views

How to determine if Java process is running in Perl

I have a suite of small Java app that all compiles/packages to <name-of-the-app>.jar and run on my server. Occasionally one of them will throw an exception, choke and die. I am trying to write ...
-1
votes
1answer
182 views

How to display the VNC an xterm is launched using the “ps” command [closed]

I have few different VNC clients logged into one server. Each VNC is for different project. As far as possible I label [give a name to a title bar] to each of my applications, but there are some ...
-1
votes
1answer
139 views

Server not able to take request [closed]

I have website working fine before. But now its not able to connect to the server(I believe that is the problem). But its strange that the message not able to connect to the server is not coming and ...
1
vote
1answer
361 views

Running multiple copyjobs in powershell parallel

i try to speed up our copyjobs with an powershell script. I iterate through a list of servers and try to start a job for each copy. foreach ($i in $serverlist) { if (Test-Connection ...

1 2 3 4