From owner-freebsd-questions@FreeBSD.ORG Thu May 6 13:53:30 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9A4516A4CE for ; Thu, 6 May 2004 13:53:30 -0700 (PDT) Received: from whoweb.com (whoweb.com [216.38.168.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1779343D45 for ; Thu, 6 May 2004 13:53:30 -0700 (PDT) (envelope-from mailist@whoweb.com) Received: from whoweb.com (localhost [127.0.0.1]) by whoweb.com (8.12.11/8.12.11) with ESMTP id i46KrsHe043939; Thu, 6 May 2004 16:53:54 -0400 (EDT) Received: (from mailist@localhost) by whoweb.com (8.12.11/8.12.11/Submit) id i46KrsEG043938; Thu, 6 May 2004 16:53:54 -0400 (EDT) Date: Thu, 6 May 2004 16:53:54 -0400 (EDT) From: Incoming Mail List Message-Id: <200405062053.i46KrsEG043938@whoweb.com> To: freebsd-questions@freebsd.org, rob@web.ca In-Reply-To: <20040506201509.GI23770@web.ca> Subject: Re: inodes for mailing list archive filesystem? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 20:53:30 -0000 That should give you double the default number of inodes. To find out how many files that will allow on the file system, divide the size of the file system by 4096. Don't forget meta-data (superblock, etc) overhead will reduce the actual amount of data space available in the file system. If you subtract 10% from your final figure you will have covered the overhead more than enough. >I'm creating a large new filesystem for an html mailing list archive... >I think I need to create more inodes than the default 'newfs' does (?). >Does something like 'newfs -i 4096 ...' seem reasonable?