From owner-freebsd-questions@FreeBSD.ORG Wed Aug 2 13:54:50 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 375CD16A4E0 for ; Wed, 2 Aug 2006 13:54:50 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5608043D72 for ; Wed, 2 Aug 2006 13:54:47 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id A6C815EF1; Wed, 2 Aug 2006 09:54:46 -0400 (EDT) X-Virus-Scanned: amavisd-new at codefab.com Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id os5VJN9lLXYq; Wed, 2 Aug 2006 09:54:45 -0400 (EDT) Received: from [192.168.1.251] (pool-68-161-117-245.ny325.east.verizon.net [68.161.117.245]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 258AA5C33; Wed, 2 Aug 2006 09:54:45 -0400 (EDT) Message-ID: <44D0AE9A.8080300@mac.com> Date: Wed, 02 Aug 2006 09:54:34 -0400 From: Chuck Swiger User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Philip Radford References: <00e401c6b610$563a9690$0d07a8c0@P800> In-Reply-To: <00e401c6b610$563a9690$0d07a8c0@P800> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Understanding top and memory usage 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: Wed, 02 Aug 2006 13:54:50 -0000 Philip Radford wrote: [ ... ] > When using the top command I get the following in regards to memory usage. > > Mem: 223M Active, 970M Inact, 175M Wired, 50M Cache, 112M Buf, 73M Free > Swap: 3029M Total, 12K Used, 3029M Free > > Can someone advise me which figure relates to actual physical memory > which is available. I can't work out if it is the 970M Inact or the 73M > Free (i.e. the last figure). The 73MB free is the amount of completely unused physical RAM available, but the system can use memory from the 970MB of inactive if needed to run new programs, otherwise that serves as a cache of already-accessed process and file data. -- -Chuck