From owner-freebsd-stable@FreeBSD.ORG Tue Jun 6 21:09:54 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE85416BA05 for ; Tue, 6 Jun 2006 21:06:33 +0000 (UTC) (envelope-from dudu.meyer@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BE9F43D48 for ; Tue, 6 Jun 2006 21:06:32 +0000 (GMT) (envelope-from dudu.meyer@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so32910uge for ; Tue, 06 Jun 2006 14:06:31 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=s2zIeuyfV3olvz55QGDZiigC4uCRyYO+9W5ftfInKlMt/aaAT5r30D2gkDb+hYR7fdWAeRXdND0ieFMfZ+w/DfJRhUNwm4zK0lFWIqjZ3OsXHEEzko0sq83EcXTu1ehv0uy7dl2xFfZDyDpWXJiqZQZh2UTjCVTbPkXFX2VAPik= Received: by 10.66.252.4 with SMTP id z4mr5184ugh; Tue, 06 Jun 2006 13:39:34 -0700 (PDT) Received: by 10.66.222.15 with HTTP; Tue, 6 Jun 2006 13:39:34 -0700 (PDT) Message-ID: Date: Tue, 6 Jun 2006 17:39:34 -0300 From: "Eduardo Meyer" To: stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: How can I know which files a proccess is accessing? X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 21:09:59 -0000 Hello, I need to know which files under /var a proccess (httpd here) is acessing. It is not logs because I have a different partition for logs. gstat tells me that slice ad0s1h (my /var) is 100% frequently, and in fact with fstat I can see a number of httpd proccesses running accesing that. But fstat only shows me inodes and the mount point. I need to know which files the proccesses are acessing. How? Thank you.