From owner-freebsd-questions@FreeBSD.ORG Fri Aug 15 17:55:41 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 446C6106564A for ; Fri, 15 Aug 2008 17:55:41 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 3377B8FC15 for ; Fri, 15 Aug 2008 17:55:39 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.2/8.14.2) with ESMTP id m7FHtWWj006399; Fri, 15 Aug 2008 19:55:32 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.2/8.14.2/Submit) with ESMTP id m7FHtVdt006396; Fri, 15 Aug 2008 19:55:32 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 15 Aug 2008 19:55:31 +0200 (CEST) From: Wojciech Puchar To: Joze Volf In-Reply-To: <48A560E1.7080701@ilab.si> Message-ID: <20080815195308.D6393@wojtek.tensor.gdynia.pl> References: <48A560E1.7080701@ilab.si> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Large RAID arrays, partitioning X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2008 17:55:41 -0000 > I searched the web again and found a possible solution to my problem. I used > the "newfs -U -O2 /dev/da1" command to create the filesystem directly on the > Is it somehow bad to make a filesystem directly on a storage device such as > disk drive or hardware raid volume? no it is all right! it just means that you don't need partitions. same with winpartitions (fdisk) i never make them, just bsdlabel. hint - with volume that will store only huge files (you've said video server) use little inodes and large blocks. and set -m 0 to make all space available newfs -m 0 -O2 -U -i $[4*1024*1024] -b 65536 -f 8192 /dev/da1 this will use 64K blocks, 8K fragments and one inode per 4MB space