From owner-freebsd-questions@FreeBSD.ORG Thu Nov 18 13:02:26 2010 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 3DDA21065672 for ; Thu, 18 Nov 2010 13:02:26 +0000 (UTC) (envelope-from bruce@cran.org.uk) Received: from muon.cran.org.uk (muon.cran.org.uk [IPv6:2a01:348:0:15:5d59:5c40:0:1]) by mx1.freebsd.org (Postfix) with ESMTP id F20BB8FC1E for ; Thu, 18 Nov 2010 13:02:25 +0000 (UTC) Received: from muon.cran.org.uk (localhost [127.0.0.1]) by muon.cran.org.uk (Postfix) with ESMTP id 42D85E7203; Thu, 18 Nov 2010 13:02:25 +0000 (GMT) Received: from unknown (client-86-27-40-229.glfd.adsl.virginmedia.com [86.27.40.229]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by muon.cran.org.uk (Postfix) with ESMTPSA; Thu, 18 Nov 2010 13:02:24 +0000 (GMT) Date: Thu, 18 Nov 2010 13:02:25 +0000 From: Bruce Cran To: Bruce Cran Message-ID: <20101118130225.0000321d@unknown> In-Reply-To: <20101118125113.000008ba@unknown> References: <66248F21-1914-467A-9874-B5987F5E4790@internode.on.net> <20101118125113.000008ba@unknown> X-Mailer: Claws Mail 3.7.4cvs1 (GTK+ 2.16.0; i586-pc-mingw32msvc) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions , Andy Wodfer Subject: Re: FreeBSD and large harddrives 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: Thu, 18 Nov 2010 13:02:26 -0000 On Thu, 18 Nov 2010 12:51:13 +0000 Bruce Cran wrote: > There's a guide to installing FreeBSD on zfs at > http://wiki.freebsd.org/RootOnZFS/GPTZFSBoot . Note that even if you > have a 'legacy' BIOS you can still use GPT - if you use the MBR scheme > you'll be limited to a maximum partition of 2TB. To answer the question - you use gpart to partition the drive and zpool to format it. e.g. for a single disk with no zraid: gpart create -s gpt devicenode gpart add -t freebsd-zfs -l label devicenode zpool create poolname /dev/gpt/label -- Bruce Cran