From owner-freebsd-proliant@FreeBSD.ORG Thu Oct 30 09:59:19 2008 Return-Path: Delivered-To: freebsd-proliant@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 982421065674 for ; Thu, 30 Oct 2008 09:59:19 +0000 (UTC) (envelope-from martinbadie@yahoo.com) Received: from n20.bullet.mail.mud.yahoo.com (n20.bullet.mail.mud.yahoo.com [68.142.206.147]) by mx1.freebsd.org (Postfix) with SMTP id 5D1138FC17 for ; Thu, 30 Oct 2008 09:59:19 +0000 (UTC) (envelope-from martinbadie@yahoo.com) Received: from [68.142.194.244] by n20.bullet.mail.mud.yahoo.com with NNFMP; 30 Oct 2008 09:46:04 -0000 Received: from [76.13.13.25] by t2.bullet.mud.yahoo.com with NNFMP; 30 Oct 2008 09:46:04 -0000 Received: from [76.13.10.164] by t4.bullet.mail.ac4.yahoo.com with NNFMP; 30 Oct 2008 09:46:03 -0000 Received: from [127.0.0.1] by omp105.mail.ac4.yahoo.com with NNFMP; 30 Oct 2008 09:46:03 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 947912.98751.bm@omp105.mail.ac4.yahoo.com Received: (qmail 21123 invoked by uid 60001); 30 Oct 2008 09:46:03 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Message-ID; b=oh9t3ptHtu5pw0t/w+em11PLX5KEroniiyazX5T/rzI/MCosQe2HclWxsC9fj7Ic0SUl3PNkFmvCcxaUOJ3x/OhynI8RB+GsjAvK+bvCXOMwFUoVg/E/IOl7Daiw1KEtWrhlyiECQZcbNqFKx2NGm7B0jkkZMl0IxYQKm3gSqos=; X-YMail-OSG: cmVVXlgVM1n7XluCZ.6BQFepc2pQN0N3.jU.fmZghvcXO3Kr69zjR32wI4.Y_DgPBE30mSxlnX.DH_SyexmwmM6.653fdFeM2ak1Jycy5biEvFfyoUmv9AXdiareoCHo8s5zQt2l5pFoYv9YYhhphorNFRg- Received: from [212.156.51.22] by web59910.mail.ac4.yahoo.com via HTTP; Thu, 30 Oct 2008 02:46:03 PDT X-Mailer: YahooMailRC/1155.11 YahooMailWebService/0.7.247.3 Date: Thu, 30 Oct 2008 02:46:03 -0700 (PDT) From: Martin Badie To: freebsd-proliant@freebsd.org MIME-Version: 1.0 Message-ID: <840667.16284.qm@web59910.mail.ac4.yahoo.com> Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: HP ML350 G5 RAID5 and freeBSD 7 X-BeenThere: freebsd-proliant@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Technical discussion of FreeBSD on HP ProLiant server platforms." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Oct 2008 09:59:19 -0000 Hi, Here are my findings about this issue: 1) ML350 G5 uses PC BIOS not EFI Bios so **hardware** doesn't allow to boot from disks > 2 TB ( http://www.centos.org/modules/newbb/viewtopic.php?topic_id=14271) 2) cciss driver with freebsd 7 and freebsd 6.3 can't see virtual disks larger that 2 TB you must use http://yogurt.org/FreeBSD/ciss_large.diff patch to see vdisk > 2TB 3) Your / must be in vdisk < 2TB So here is my solution: (for freebsd 6.3 and 7.0) 1) Use 2 RAID on E200i first is RAID0 (that has size less than 2 TB) and create another RAID as RAID5 2) After installation you will not see second raid5 on freebsd 6.3 and 7.0. You will see following errors on dmesg output: (da1:ciss0:0:1:0): got CAM status 0x4 (da1:ciss0:0:1:0): fatal error, failed to attach to device (da1:ciss0:0:1:0): lost device (da1:ciss0:0:1:0): removing device entry 3) Compile a kernel with that patch (http://yogurt.org/FreeBSD/ciss_large.diff ) and reboot 4) After rebooting in to new patched kernel you can see RAID5 (>2TB) 5) Format RAID5 with using GPT as follows: # gpt show /dev/da1 # gpt create -f /dev/da1 # gpt add /dev/da1 # gpt show /dev/da1 # newfs /dev/da1p1 That's it.. PS: I have used 7.1 BETA2 and saw that it can see whole disks ( > 2 TB) with sysinstall but since ML350 G5 doesn't support EFI boot (hardware) we can't boot it after installation. And here is my question "Does sysinstall support GPT instead of PC BIOS on installation?" That I don't know.. Regards.