From owner-freebsd-questions@FreeBSD.ORG Mon Jun 18 12:53:18 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C56C16A400 for ; Mon, 18 Jun 2007 12:53:18 +0000 (UTC) (envelope-from sacchi@gmail.com) Received: from ik-out-1112.google.com (ik-out-1112.google.com [66.249.90.182]) by mx1.freebsd.org (Postfix) with ESMTP id 95B5313C487 for ; Mon, 18 Jun 2007 12:53:17 +0000 (UTC) (envelope-from sacchi@gmail.com) Received: by ik-out-1112.google.com with SMTP id c21so1366087ika for ; Mon, 18 Jun 2007 05:53:16 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=SVGACOdjvqx93XYNBT8K+uaKNUMxHHWqXuaNp8reoId32LDxLY6zETQMXzbmIsK/Qhe0BpO01wp3PQC8oy/1CrA2HJ+1pgMb1gPrgaHiuroBQTJOIheWLoADWMTvuU21DHnfIQ+T/q+yuZfScTrv+TIV1GP47Csm0LLWDjrO6rE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=c34JkpwIGxTvXPiFocKxsZgpt8AukySi28uw+8YEnqENffM52NsLQyZ7SFC8pPlX0TBk3VVbVOr/281kpcgxvE5G7/ln8jI+kfh99UJ9cCgPRs+wS5gNBcGy3tWEZQC6A6XX71ZPRbjsNvp4wOsd0oFZbA1M7BAPK93Y36FbqT0= Received: by 10.78.171.13 with SMTP id t13mr2271059hue.1182171195691; Mon, 18 Jun 2007 05:53:15 -0700 (PDT) Received: by 10.78.158.19 with HTTP; Mon, 18 Jun 2007 05:53:15 -0700 (PDT) Message-ID: Date: Mon, 18 Jun 2007 18:23:15 +0530 From: sac Sender: sacchi@gmail.com To: "Prakash Poudyal" In-Reply-To: <1428d0e80706170425i2097f00bvfa2ec9ade19dbc0c@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1428d0e80706170425i2097f00bvfa2ec9ade19dbc0c@mail.gmail.com> X-Google-Sender-Auth: 0024a64d92072db7 Cc: freebsd-questions@freebsd.org Subject: Re: How to see the Ram memory in freebsd 6.2 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: Mon, 18 Jun 2007 12:53:18 -0000 On 6/17/07, Prakash Poudyal wrote: > Hello All, > > Can any body tell me how to see the RAM memory in freebsd. > > for your reference I had already used dmesg and top command and now I want > to know specifec command to see the Ram memory only. > > $ sysctl hw.physmem | awk '{ print $2/(1024*1024) }' Will give you memory size in megabytes. - Sachidananda.