From owner-freebsd-questions@FreeBSD.ORG Sat Sep 3 13:14:36 2005 Return-Path: X-Original-To: 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 AF66616A41F for ; Sat, 3 Sep 2005 13:14:36 +0000 (GMT) (envelope-from gabor.kovesdan@t-hosting.hu) Received: from server.t-hosting.hu (server.t-hosting.hu [217.20.133.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D13643D45 for ; Sat, 3 Sep 2005 13:14:35 +0000 (GMT) (envelope-from gabor.kovesdan@t-hosting.hu) Received: from [80.98.133.57] (catv-50628539.catv.broadband.hu [80.98.133.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by server.t-hosting.hu (Postfix) with ESMTP id DB1C89975AD; Sat, 3 Sep 2005 15:14:33 +0200 (CEST) Message-ID: <4319A1B9.70601@t-hosting.hu> Date: Sat, 03 Sep 2005 15:14:33 +0200 From: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: akhthar@gmail.com References: <888ff6540509030519101cfedd@mail.gmail.com> In-Reply-To: <888ff6540509030519101cfedd@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: kill the zombie processes 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, 03 Sep 2005 13:14:36 -0000 Akhthar Parvez K wrote: >HI all, > >Is there any way to kill the zombie processes in FreeBSD other than >rebooting the server. Thanks > > > Look for the pid number in the output of "ps aux", and issue "kill -KILL pid". Normally kill sends a SIGTERM signal but if You specify the -KILL option it sends the SIGKILL signal. Cheers, Gabor Kovesdan