From owner-freebsd-questions@FreeBSD.ORG Mon Jul 3 08:06:17 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0383216A412; Mon, 3 Jul 2006 08:06:17 +0000 (UTC) (envelope-from nvass@teledomenet.gr) Received: from matrix.teledomenet.gr (dns1.teledomenet.gr [213.142.128.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D8CE43D48; Mon, 3 Jul 2006 08:06:15 +0000 (GMT) (envelope-from nvass@teledomenet.gr) Received: from iris ([192.168.1.71]) by matrix.teledomenet.gr (8.12.10/8.12.10) with ESMTP id k6386DEY016848; Mon, 3 Jul 2006 11:06:13 +0300 From: Nikos Vassiliadis To: freebsd-questions@freebsd.org Date: Mon, 3 Jul 2006 11:03:45 +0300 User-Agent: KMail/1.9.1 References: <44A7AC66.3070805@mail.uni-mainz.de> In-Reply-To: <44A7AC66.3070805@mail.uni-mainz.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200607031103.46062.nvass@teledomenet.gr> Cc: "O. Hartmann" , freebsd-amd64@freebsd.org Subject: Re: Kill an stopped 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: Mon, 03 Jul 2006 08:06:17 -0000 On Sunday 02 July 2006 14:22, O. Hartmann wrote: > Sometimes it happens on my FreeBSD 6.1-STABLE/AMD box, that a process, > in most cases xine, firefox oder thunderbird, show status 'STOP' in top > and are unkillable! they are stopped... > Trying to kill them as root (sending signal 9 throught 'kill' or > 'killall') doesn't have any effect. > > Can anyone help and tell how to kill such a job? The only way getting > rid of those processes is reboot the box and this can not be the right way. You should send a CONT(inue) and then something like TERM(inate). KILL should be your last choice, since it does what its name says(the process have no way of controlling this signal, it terminates immediately, given that's in a state were can be killed). KILL is rarely really needed. AFAIK this is not FreeBSD specific. I assume It is defined in POSIX. HTH, Nikos