Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
2k views

In what order should I send signals to gracefully shutdown processes?

In a comment on this answer of another question, the commenter says: don’t use kill -9 unless absolutely necessary! SIGKILL can’t be trapped so the killed program can’t run any shutdown ...
7
votes
2answers
103 views

Does Linux allow process group ids to be reassigned to processes?

Suppose pid X is a process group leader and X terminates, but other processes in the process group remain running (with X as their pgid). Will Linux prevent the value X from being assigned as a pid to ...
6
votes
1answer
2k views

Wait for bash background jobs in script to be finished

To maximize CPU usage (I run things on a Debian Lenny in EC2) I have a simple script to launch jobs in parallel: #!/bin/bash for i in apache-200901*.log; do echo "Processing $i ..."; ...
4
votes
4answers
3k views

Why can't I use job control in a bash script?

In this answer to another question, I was told that in scripts you don't have job control (and trying to turn it on is stupid) This is the first time I've heard this, and I've pored over the ...
3
votes
4answers
139 views

Job control in linux with C

What I know: When a process is running I can press "CTRL + Z" and suspend it. The with bg and fg commands I can either run it in "background" or "foreground" mode. What I'm aksing: Is there a way ...
2
votes
3answers
1k views

Run lynx -dump in background?

I have a bash script mystuff containing a line like lynx -dump http://example.com >tmpfile and the script works fine, including this part, except when I run it non-interactively: $ ./mystuff ...
1
vote
0answers
13 views

Looking for a Simple Job Control Framework (Not looking for schedulers like Quartz)

I am looking for a simple Job Control Framework to: Check up on the status of processes running on different machines The machines would be running a LINUX distribution The processes would be ...
1
vote
2answers
63 views

Bash job control - Can you terminate second command on list without terminating first?

If I issue this at a bash prompt: $ cmd_1 ; cmd_2 cmd_1 is in the foreground. Can I prevent cmd_2 from running without halting cmd_1? I have until cmd_1 finishes, at which time cmd_2 will start, ...
1
vote
2answers
116 views

Difference between foreground job and background job [closed]

In Linux, what is the difference between a foreground job and a background job?
1
vote
1answer
58 views

Programmatically start a series of processes w\ job control

I have a series of 7 processes required to run a complex web app that I develop on. I typically start these processes manually like this: job &>/tmp/term.tail & term.tail is a fifo pipe ...
1
vote
1answer
723 views

How to start a linux shell as from /etc/inittab

We used to have two entries in our /etc/inittab: ::sysinit:/etc/init.d/rcS ttyS0::respawn:-/bin/sh rcS is a shell script which normally starts our application, but in a special case we called ...
0
votes
0answers
19 views

What are some good job/data -flow systems that run on Linux?

I need to manage and run jobs that look like this: Everyday, Process A needs to run at a 2:00, producing a set of files in a certain dated directory. After Process A succeeds, whenever that is, ...
0
votes
1answer
88 views

How to switch terminal to new child process of process launched with NSTask?

I made a pseudo terminal with method described here: http://lists.apple.com/archives/student-dev/2005/Mar/msg00019.html The terminal itself worked well. Anyway the problem is terminal cannot being ...
0
votes
5answers
205 views

Does PHP have job control like bash does?

does PHP support something like ampersand in bash (forking)? Let's say I wanted to use cURL on 2 web pages concurrently, so script doesn't have to wait before first cURL command finnishes, how could ...