From owner-freebsd-questions@FreeBSD.ORG Thu May 27 11:13:56 2010 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 345C5106567E for ; Thu, 27 May 2010 11:13:56 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: from mail-ww0-f54.google.com (mail-ww0-f54.google.com [74.125.82.54]) by mx1.freebsd.org (Postfix) with ESMTP id B84DE8FC08 for ; Thu, 27 May 2010 11:13:55 +0000 (UTC) Received: by wwe15 with SMTP id 15so1883228wwe.13 for ; Thu, 27 May 2010 04:13:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:in-reply-to:references:x-mailer:mime-version :content-type:content-transfer-encoding; bh=Yv7B8s+3KF8dkkE9m33ZXym8k0OozC/huz7j9r9kv8k=; b=WwJmvWmEsAD80MtzC11rtIOuMMR3d71hi6fvZS1azR60VG8ohwhd+K1CYunqg1GKo2 pMKJW5G+VMFzQWv3n6TWuOGoM9gGEkn3j8xOqqdoNbJBQfGGlXP0ncYpW+uqAnwJ7IJ3 x9qcGj1rwFFFb1HsBZUbECz7effGBzIV11s9Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; b=pknI8gQDAr6LGwOr2ZCnmY7Jqu40vYTT/P6rm6VWfjvj4k/i33HDE1kKEJQKQWQA7J /bLC0KBEmBx+uRBxD0ZNpq1Pwp5SmRLyVmTijznJ2FDXNCkMp6FqfPUDIz+eLiBvczZj 68okfv/MOFPuKy7Rrr/xHJXwIanx1shJ+o3tc= Received: by 10.216.188.141 with SMTP id a13mr540927wen.43.1274958834600; Thu, 27 May 2010 04:13:54 -0700 (PDT) Received: from gumby.homeunix.com (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mx.google.com with ESMTPS id l46sm607832wed.22.2010.05.27.04.13.53 (version=SSLv3 cipher=RC4-MD5); Thu, 27 May 2010 04:13:53 -0700 (PDT) Date: Thu, 27 May 2010 12:13:51 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20100527121351.7d5327ac@gumby.homeunix.com> In-Reply-To: <4BFE40CF.8020203@waagmeester.co.za> References: <4BFE40CF.8020203@waagmeester.co.za> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: top memory usage question 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, 27 May 2010 11:13:56 -0000 On Thu, 27 May 2010 11:52:15 +0200 Coert wrote: > Hello all, > > Just a question, on Linux the output of top's memory usage looks like > this: > > Mem: 2075424k total, 1760848k used, 314576k free, 151872k > buffers Swap: 4192924k total, 0k used, 4192924k free, > 1214052k cached > > > on FreeBSD: > > Mem: 48M Active, 945M Inact, 190M Wired, 112M Buf, 804M Free > Swap: 4063M Total, 4063M Free This is missing Cache > I have looked at the respective man pages, and googled. > Where can I find out what Active, Inactive, and Wired mean? Active, Inact, Cache , and Free are all part of the same VM lifecycle. When the system need to allocate memory it comes from cache or free. Wired memory wont be paged-out.