From owner-freebsd-questions@FreeBSD.ORG Sat Jul 5 11:23:24 2008 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 C3C581065670 for ; Sat, 5 Jul 2008 11:23:24 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ECD5A8FC13; Sat, 5 Jul 2008 11:23:21 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <486F59A7.10503@FreeBSD.org> Date: Sat, 05 Jul 2008 13:23:19 +0200 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.14 (Macintosh/20080421) MIME-Version: 1.0 To: Robert Heron References: <1FC03320-82E6-4ADD-AE3F-E0BAD48AF4D0@heron.pl> In-Reply-To: <1FC03320-82E6-4ADD-AE3F-E0BAD48AF4D0@heron.pl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD 7.0 and RAM limit 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: Sat, 05 Jul 2008 11:23:24 -0000 Robert Heron wrote: > Hi, > > I use: > > FreeBSD 7.0-R on i386 server with motherboard S5000VSA and 6GB RAM > onboard. BIOS version - 88 (the latest) > > Kernel includes: options MAXMEM=(6*1024*1024) > > And FreeBSD reports only: > > real memory = 2680160256 (2556 MB) > avail memory = 2617892864 (2496 MB) > > Why? What is wrong that FreeBSD sees only about 2.5GB instead of 6GB? The i386 architecture cannot address more than 4GB (== 2^32) of RAM unless you use PAE (i.e. the PAE kernel). You don't need to set MAXMEM either, since it's autodetected. Kris