[469] in netbsd-help mailing list archive
Re: memory
daemon@ATHENA.MIT.EDU (Greg Hudson)
Sun Nov 26 21:30:46 1995
To: Eric Ford <eford@MIT.EDU>
Cc: netbsd-help@MIT.EDU
In-Reply-To: Your message of "Sun, 26 Nov 1995 21:22:31 EST."
<199511270222.VAA01814@polys.MIT.EDU>
Date: Sun, 26 Nov 1995 21:30:24 EST
From: Greg Hudson <ghudson@MIT.EDU>
> When I boot it also says something about total memory and then
> avaliable memory. DOn't see why I should have lots anything in the
> first few lines of boot up.
NetBSD claims a fair amount of memory for kernel data and disk buffers
at boot time.
The default kernel uses a bit more space than necessary since it has
all the device drivers and other things enabled. To get better
performance, you can build your own kernel by doing the following as
root:
mkdir -p /usr/obj/sys/arch/i386/compile/POLYS
ln -s /usr/src/sys/arch/i386/include /usr/obj/sys/arch/i386/include
cp /usr/src/sys/arch/i386/conf/ATHENA-AHA $HOME/POLYS
<Now edit $HOME/POLYS to remove things you don't want; lowering the
value of maxusers will also help>
config $HOME/POLYS
cd ../compile/POLYS
make depend
make
mv /netbsd /netbsd.old
cp netbsd /netbsd
At the moment, we can't guarantee that our kernel source tree will
always be stable (this will change in the fairly near future, although
it's not clear whether the 3C590 will be supported in our production
tree), but right now it should be fine (your current kernel was build
out of it).