From owner-freebsd-python@FreeBSD.ORG Mon May 21 13:53:08 2007 Return-Path: X-Original-To: freebsd-python@freebsd.org Delivered-To: freebsd-python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E573216A41F; Mon, 21 May 2007 13:53:08 +0000 (UTC) (envelope-from bkoenig@alpha-tierchen.de) Received: from mail.liberty-hosting.de (mail.liberty-hosting.de [195.225.132.203]) by mx1.freebsd.org (Postfix) with ESMTP id A3FEB13C44B; Mon, 21 May 2007 13:53:08 +0000 (UTC) (envelope-from bkoenig@alpha-tierchen.de) Received: from mail.liberty-hosting.de ([195.225.132.203]) by localhost (liberty-mail [195.225.132.203]) (amavisd-new, port 10024) with ESMTP id 31198-02; Mon, 21 May 2007 15:22:30 +0200 (CEST) Received: from home.alpha-tierchen.de (port-212-202-170-5.dynamic.qsc.de [212.202.170.5]) by mail.liberty-hosting.de (Postfix) with ESMTP id F29F7181057; Mon, 21 May 2007 15:22:29 +0200 (CEST) Received: from webmail.alpha-tierchen.de (localhost [127.0.0.1]) by home.alpha-tierchen.de (Postfix) with ESMTP id 0003845046; Mon, 21 May 2007 15:22:27 +0200 (CEST) Received: from 2001:6f8:101e:0:20e:cff:fe6d:6adb (SquirrelMail authenticated user bkoenig) by webmail.alpha-tierchen.de with HTTP; Mon, 21 May 2007 15:22:28 +0200 (CEST) Message-ID: <61565.2001:6f8:101e:0:20e:cff:fe6d:6adb.1179753748.squirrel@webmail.alpha-tierchen.de> In-Reply-To: <20070520183306.GA25051@ayn.mi.celestial.com> References: <46508D23.2040003@xs4all.nl> <20070520183306.GA25051@ayn.mi.celestial.com> Date: Mon, 21 May 2007 15:22:28 +0200 (CEST) From: =?iso-8859-1?Q?Bj=F6rn_K=F6nig?= To: freebsd-questions@freebsd.org, freebsd-python@freebsd.org User-Agent: SquirrelMail/1.4.9a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: by amavisd-new at mail.smartterra.de Cc: Subject: Re: kill won't kill X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2007 13:53:09 -0000 Bill schrieb: > On Linux systems I frequently use ``strace -p pid'' to see what > a process is doing. I don't know the FreeBSD equivalent of strace. strace is not a program that is dedicated to Linux. You can use strace with FreeBSD too. You only need to install it and mount procfs: # pkg_add -r strace # mount_procfs procfs /proc Regards Björn