From owner-freebsd-questions@FreeBSD.ORG Sat Sep 20 14:11:20 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32F24106564A for ; Sat, 20 Sep 2008 14:11:20 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from mail.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 00CAC8FC0C for ; Sat, 20 Sep 2008 14:11:19 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (mail.rachie.is-a-geek.net [192.168.2.101]) by mail.rachie.is-a-geek.net (Postfix) with ESMTP id 0F01BAFBC01; Sat, 20 Sep 2008 06:11:19 -0800 (AKDT) From: Mel To: freebsd-questions@freebsd.org Date: Sat, 20 Sep 2008 15:54:51 +0200 User-Agent: KMail/1.9.7 References: <200809191812.m8JICBhB011472@lurza.secnetix.de> <20080920083439.B8658@wojtek.tensor.gdynia.pl> In-Reply-To: <20080920083439.B8658@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809201554.51657.fbsd.questions@rachie.is-a-geek.net> Cc: Wojciech Puchar , stevefranks@ieee.org Subject: Re: kill -KILL fails to kill process X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Sep 2008 14:11:20 -0000 On Saturday 20 September 2008 08:35:53 Wojciech Puchar wrote: > > 1. The process hangs in "disk wait" (flag "D" in ps' STAT > > column). This often means there's a hardware problem > > with your disk or controller (or a driver bug), or a > > network problem if you use NFS. > > not this for sure. no NFS, no filesystem is blocked. > > > 2. The process was suspended (SIGSTOP). In this case > > there is the flag "T" in ps' STAT column. Try sending > > a SIGCONT to the process. > > tried (kill -19) then kill -9, doesn't help. > > > Such a "dead" entry in the process table is called a > > zombie process. In ps' STAT column there is the "Z" > > flag. > > no Z flag. > > 887 ?? Ts 0:02,20 asterisk -C /centrala/etc/asterisk.conf Some processes suspend themselves directly on a certain condition, or because they try to read from a terminal. Example: # cat -n test.sh 1 #!/bin/sh 2 3 read LINE; 4 echo $LINE; # sh test.sh