From owner-freebsd-questions@FreeBSD.ORG Tue Feb 12 19:13:21 2008 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B295716A421 for ; Tue, 12 Feb 2008 19:13:21 +0000 (UTC) (envelope-from daniel_k_eriksson@telia.com) Received: from pne-smtpout1-sn1.fre.skanova.net (pne-smtpout1-sn1.fre.skanova.net [81.228.11.98]) by mx1.freebsd.org (Postfix) with ESMTP id 7267913C457 for ; Tue, 12 Feb 2008 19:13:21 +0000 (UTC) (envelope-from daniel_k_eriksson@telia.com) Received: from royal64.emp.zapto.org (195.198.193.104) by pne-smtpout1-sn1.fre.skanova.net (7.3.129) id 47A979500022B839; Tue, 12 Feb 2008 19:03:00 +0100 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable Date: Tue, 12 Feb 2008 19:03:02 +0100 X-MimeOLE: Produced By Microsoft Exchange V6.5.7235.2 Message-ID: <4F9C9299A10AE74E89EA580D14AA10A61A18AE@royal64.emp.zapto.org> In-Reply-To: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Promise RAID array and mounting questions thread-index: AchtjrDb72ZnXtmBEdy3kQAbY6lRSwAEVKsg References: From: "Daniel Eriksson" To: Cc: Trevor Hearn Subject: RE: Promise RAID array and mounting questions 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: Tue, 12 Feb 2008 19:13:22 -0000 Trevor Hearn wrote: > I can see the promise array, it shows us as DA0. The problem=20 > is what is > listed in the Dmesg stream shows the right amount of storage=20 > space on the > array, but when I use sysinstall, I cannot mount that space=20 > as the full > volume. I don't know if I am missing information on what to put for > geometry, but anything I put does not get accepted as usable. You will not be able to use sysinstall for this, the array is too big. You should use gpt instead. Do you want the entire array as one partition? # gpt create /dev/da0 # gpt add /dev/da0 # newfs -O2 -U /dev/da0p1 (or 'newfs -O2 -U -i 524288 /dev/da0p1' if you have mostly multi-megabyte files) If you want multiple partitions you will have to pass a size (in sectors) as a parameter to 'gpt add'. Beware that you might not be able to fsck the filesystem because of its size. I'm not sure how well gjournal handles fsck of large filesystems. Personally I'm going with ZFS for my next large array (8x750GB). /Daniel Eriksson