From owner-freebsd-questions Mon Dec 8 07:15:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA13117 for questions-outgoing; Mon, 8 Dec 1997 07:15:23 -0800 (PST) (envelope-from owner-freebsd-questions) Received: from clio.rice.edu (clio.rice.edu [128.42.105.3]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id HAA13108 for ; Mon, 8 Dec 1997 07:15:20 -0800 (PST) (envelope-from keyser@clio.rice.edu) Received: by clio.rice.edu (AIX 3.2/UCB 5.64/4.03) id AA15950; Mon, 8 Dec 1997 09:14:48 -0600 Date: Mon, 8 Dec 1997 09:14:48 -0600 From: keyser@clio.rice.edu (Kevin Keyser) Message-Id: <9712081514.AA15950@clio.rice.edu> To: jemstone@triplet.net Subject: Re: Out of Swap Space? Cc: questions@freebsd.org Sender: owner-freebsd-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > I keep getting this and INND gets killed. How do I increase swap > space? How do I check to see how much was allocated? I believe I > gave it 100 megs? Use swapinfo to find out which swap devices are active, how big, and how much in use. If your kernel was compiled with pseudo-device vn, you can arrange to swap to a file (assuming you're not low on filespace too). dd if=/dev/zero of=/somewhere/bigfile bs=1m count=64 vnconfig -c /dev/vn0c /somewhere/bigfile swapon /dev/vn0c See also the man pages for these commands so you can tailor to your situation. > Thanks... > > Jim Kevin