From owner-freebsd-questions@FreeBSD.ORG Thu Apr 9 19:26:52 2009 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 3E0C8106567A for ; Thu, 9 Apr 2009 19:26:52 +0000 (UTC) (envelope-from jgimer@gmail.com) Received: from mail-qy0-f134.google.com (mail-qy0-f134.google.com [209.85.221.134]) by mx1.freebsd.org (Postfix) with ESMTP id EDA828FC08 for ; Thu, 9 Apr 2009 19:26:51 +0000 (UTC) (envelope-from jgimer@gmail.com) Received: by qyk40 with SMTP id 40so1383514qyk.3 for ; Thu, 09 Apr 2009 12:26:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=EuH95hSIwiVfq28zzql/Mz2c1Y2zpdAB8R+ducn43n0=; b=yE3lSuFbY5ZpwZch2SVZswa1OUb68/YBbAERg4LOD8gV1EZnE65Vyvrv3jyzo7KUho iRgmg9Dk3bc3T7emZKT33ZS7dJ5G/vNRRB3//hbiyBL4tWLjY00pQ5tc6nEgiHEqablx cYKCzwaCZCOPfgzWdVHiMwtmD3dRsK21GrXlc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=JGJBdNB9rqWQ0IQ8ZIze4kYkEuUZFQNIqaZW5jp/WVDZn4ucbP2r4QJGcML1/TK9Dv bMfh+twupyqDoXb4js1taFZf3alwxkHd7xtcFFrgVsm+t5bXTkoKZ6Ms+QbxAwAQFFPs f6Q99jwN87xgaxNy68mek4JP+gXNhsFtKxCOg= MIME-Version: 1.0 Received: by 10.229.81.140 with SMTP id x12mr1037891qck.35.1239305211245; Thu, 09 Apr 2009 12:26:51 -0700 (PDT) In-Reply-To: <20090409114731.GA4871@zptr-nb01> References: <20090409114731.GA4871@zptr-nb01> Date: Thu, 9 Apr 2009 13:26:51 -0600 Message-ID: From: Joshua Gimer To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: cannot kill process with kill -9 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: Thu, 09 Apr 2009 19:26:52 -0000 You might also find a little bit information about what the process is waiting on by attaching to it with strace (in ports under devel) (strace -p PID). On Thu, Apr 9, 2009 at 5:47 AM, Eray Aslan wrote: > On Thu, Apr 09, 2009 at 09:41:31AM +0200, Pieter Donche wrote: >> I have a mount_nfs process that refuses to get killed : >> # ps -jaxw | grep mount >> root =A0 60342 =A0 =A0 1 60289 60289 =A0 =A00 D =A0 =A0 ?? =A0 =A00:00.0= 0 mount_nfs > [...] >> How to I get this process killed? > > reboot. =A0You can't kill a process with a D flag. =A0Google for > uninterruptible sleep. > > -- > Eray > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" > --=20 Thx Joshua Gimer