From owner-freebsd-questions Wed Jul 17 15:48:27 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA28246 for questions-outgoing; Wed, 17 Jul 1996 15:48:27 -0700 (PDT) Received: from homer31.u.washington.edu (durang@homer31.u.washington.edu [140.142.78.17]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id PAA28236 for ; Wed, 17 Jul 1996 15:48:25 -0700 (PDT) Received: from localhost by homer31.u.washington.edu (5.65+UW96.06/UW-NDC Revision: 2.33 ) id AA45609; Wed, 17 Jul 96 15:48:21 -0700 Date: Wed, 17 Jul 1996 15:48:20 -0700 (PDT) From: Ken Marsh To: Blair Schmittel Cc: questions@FreeBSD.org Subject: Re: Incresing files In-Reply-To: <199607171947.NAA20159@strech.cyber-naut.com> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Wed, 17 Jul 1996, Blair Schmittel wrote: > How do you increase the limit on the # of files that can be open at any > one time? # of files, or # of processes? One thing which may help is in your Kernel configuration file. The line: maxusers # (where # is a number, perhaps less than 4) does not actually control the number of users who can log on, but the number of process that can run simultaneously. The maximum number of processes is set to 20 + 16 * maxusers, and 18 processes could be started at boot time, plus 15 or so when you start X Windows. Even a simple task like reading a 'man' page can start up 9 processes, so maxusers should be set to at least 4, even for a single user machine. You can get this info and more from: http://www.freebsd.org/handbook/handbook36.html#44 If you really mean 'files' and not 'processes' then I don't know! Ken Marsh