From owner-freebsd-questions@FreeBSD.ORG Mon Feb 4 19:00:09 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 538BE16A468 for ; Mon, 4 Feb 2008 19:00:09 +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 369F813C4E1 for ; Mon, 4 Feb 2008 19:00:03 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8) with ESMTP id m14Ivx0U009172; Mon, 4 Feb 2008 19:57:59 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id m14Ivolr009169; Mon, 4 Feb 2008 19:57:54 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 4 Feb 2008 19:57:50 +0100 (CET) From: Wojciech Puchar To: Josh Paetzel In-Reply-To: <200802041115.50984.josh@tcbug.org> Message-ID: <20080204195114.O9132@wojtek.tensor.gdynia.pl> References: <47A732BC.2090204@ariel.ru> <200802041115.50984.josh@tcbug.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Leonid Satanovsky Subject: Re: SATA raid controller on Asustek's P5M2-M 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: Mon, 04 Feb 2008 19:00:09 -0000 > My experience with the onboard BIOS RAID of various motherboards has been > horrific. I'd suggest one of two paths, depending on the RAID configuration > you're going for. you well called it "BIOS RAID". because it is actually completely normal hardware, just with crappy software RAID in BIOS. gmirror, gstripe is software RAID, gconcat is useful too, all is much better and is portable (you may move that disks to any other controller). and you may gmirror partition, not whole drive. for booting it's best to create small boot partition. as it's not much space i usually create boot partition on every disk so it can boot with disks swapped, missing etc. it's just important to make boot partition as a. example of my /boot/install.sh which i run every time i change anything in /boot on 6 disk system: #!/bin/sh for x in ad10a ad12a ad14a ad16a ad18a ad20a ;do newfs -m 0 -i 32768 -b 16384 -f 2048 /dev/$x mount /dev/$x /root/mnt-boot cp -pR /boot /root/mnt-boot umount /root/mnt-boot done replace /root/mnt-boot with something else if prefered. please don't ask me how to do it with sysinstall. the answer is impossible or very difficult like temporary install without gmirror, boot partitions and copying. best way is to use liveCD/DVD and do manual install. is there anywhere manual-install-howto? if not i could write it having a bit of time.