Date: Tue, 25 Dec 2007 01:06:18 +0100 From: "Heiko Wundram (Beenic)" <wundram@beenic.net> To: robert@webtent.com Cc: freebsd-questions@freebsd.org Subject: Re: 4GB memory and more Message-ID: <200712250106.19265.wundram@beenic.net> In-Reply-To: <1198534892.11590.8.camel@columbus.webtent.org> References: <1198534892.11590.8.camel@columbus.webtent.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Am Montag, 24. Dezember 2007 23:21:32 schrieb Robert Fitzpatrick: > I have a couple of Supermicro servers and upgraded both with more > memory. I upgraded our ESMTP server from 1GB to 4GB and our MX server > from 2GB to 5GB. Below are the dmesg memory findings and, yes, I get the > memory over 4GB ignored when booting up. The ESMTP even says that about > 130MB is ignored. I was reading about building into the kernel PAE > options for using above 4GB of memory, but in the dmesg I see PAE in the > Features. Does this mean the support is there and I just need some BIOS > tweaking? Nope. This means that your CPU supports PAE, but says nothing about the operating system itself (whether it uses PAE or not). When you want a PAE-enabled kernel (i.e., one that uses PAE to see the "extra" memory), see the PAE kernel configuration in the sys/i386/conf directory of your sources tree, and build your own kernel with (for example, if you don't want to customize the kernel configuration): make kernconf=PAE buildworld buildkernel installkernel This builds a kernel which actually uses that interface to see the extra memory and allows you to access it in standard i386 mode. Generally, it's considered better practise to use the AMD64 architecture to access the high memory (because of performance considerations and driver compatability), but I don't know whether your CPUs actually support the x64 operating mode, so you may be stuck with using PAE. YMMV. -- Heiko Wundram Product & Application Development
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200712250106.19265.wundram>