Tagged Questions

0
votes
2answers
55 views

how to check if ruby script is running in background from PHP script ?

say a ruby script is running ruby.rb SOMEUSERID using PHP, how can i find out whether something exactly like that is currently running or not ? Currently i am using PID to check …
0
votes
0answers
46 views

How do you manage to learn photoshop as a programmer? [closed]

During the years I've become used to do things with code, not by mouse clicks. Do you have a good way that's especially fit for programmers to learn it?
0
votes
1answer
136 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 …
1
vote
3answers
120 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.
3
votes
5answers
763 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 …
0
votes
4answers
214 views

How does PS/PDF store and compress bitmaps?

I am experimenting with a system to scan letters and convert the scanned bitmaps to PDF with the goal to have a high resolution and a small PDF file size. I am prototyping with sc …
1
vote
1answer
47 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 …
-1
votes
1answer
147 views

ps <pid> can see what ps -C can’t [closed]

Linux, SUSE something: > ps 26320 26320 ? S1 1:15 /path/csx_ic_std.x <some params> > ps -C csx_ic_std.x > ps -C /path/csx_ic_std.x > why??
4
votes
3answers
234 views

Getting The Full Result from “ps”

Hi, 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 every …