From owner-freebsd-questions@FreeBSD.ORG Sun Aug 5 04:00:27 2007 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 0927316A41A for ; Sun, 5 Aug 2007 04:00:27 +0000 (UTC) (envelope-from modulok@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.184]) by mx1.freebsd.org (Postfix) with ESMTP id E848F13C459 for ; Sun, 5 Aug 2007 04:00:26 +0000 (UTC) (envelope-from modulok@gmail.com) Received: by rv-out-0910.google.com with SMTP id f1so773200rvb for ; Sat, 04 Aug 2007 21:00:26 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Zl24kTIp3KqSRXaEbQrJ2BGD4mIUpvVTJ8lzZOKKgTKv5MptNH/Djdhnh9RHZxNAP8rNXm8OfpiK8jCRCCHL0Dr7G2z34Ll9D1P3hk3EDyQBwc54gugGbyyMsUvkX4QrkfcT/05FTHx/MGqAGG//SZndDvtTyMf6ZPqxGYBr5ys= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=IW7CW639vCA4lZlqly8ax0MLVm3U90FAZeNnKMYpzhiPNBw9NawvIK0mRfkUSDmlPoP+13Llvi3zn9r2s3lk8Yf6dSgfD+3naCShKl0Qebc11T6zwETKPMmU9JfeRKZ5PlNRZ+3kZv00ytGYD8eml38v98uVLcaWQ/sSWyHsr/A= Received: by 10.141.63.20 with SMTP id q20mr1258782rvk.1186286426490; Sat, 04 Aug 2007 21:00:26 -0700 (PDT) Received: by 10.140.170.12 with HTTP; Sat, 4 Aug 2007 21:00:26 -0700 (PDT) Message-ID: <64c038660708042100jdf7db91qbb92a6c663857627@mail.gmail.com> Date: Sat, 4 Aug 2007 22:00:26 -0600 From: Modulok To: "Prakash Poudyal" In-Reply-To: <1428d0e80708042023k3b5bec4cs4683a92f84d3f521@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1428d0e80708042023k3b5bec4cs4683a92f84d3f521@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: How to know the size of RAM memory 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: Sun, 05 Aug 2007 04:00:27 -0000 On 8/4/07, Prakash Poudyal wrote: > Hello everybody, > > Can any body tell how to see the size of RAM memory in freebsd. ? > Thank you > > Sincerely > > Prakash It should be displayed early in the dmesg(8) output shown during the boot process. You may review this by executing the dmesg(8) command. Among the output will be listed: dmesg | grep "memory" real memory = 2146304000 (2046 MB) avail memory = 2087034880 (1990 MB) You could also check the appropriate sysctl(8) variables as follows: sysctl hw.physmem sysctl hw.usermem sysctl hw.realmem To get memory usage statistics you can use ps(1) and top(1): ps -u top -Modulok-