From owner-freebsd-fs@FreeBSD.ORG Fri Aug 2 07:58:13 2013 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E989988A for ; Fri, 2 Aug 2013 07:58:12 +0000 (UTC) (envelope-from sfourman@gmail.com) Received: from mail-vb0-x22a.google.com (mail-vb0-x22a.google.com [IPv6:2607:f8b0:400c:c02::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A53C029BC for ; Fri, 2 Aug 2013 07:58:12 +0000 (UTC) Received: by mail-vb0-f42.google.com with SMTP id e12so300311vbg.15 for ; Fri, 02 Aug 2013 00:58:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=2YwklSQMxD0ZYxBhqAI/CPV2inN+zxhGKzcSerVEFZY=; b=GiED9qkAM+soxVz+JjifoLKOXwwixnoLGPFuM+qxpuggOHO2lrh9cECFGdMHmE2W/o EHMn1YjnNEL+6bPQjtAXshyB5FDHCAVCYGTZYvs8m5IQPUm1Tq/+zvNxXgbQOWSR/gLW OPc4kgBaSwmdYsL84oYnl2fjiINRBTdoGVUB7FufSy2C6TkwThDrbU0Y7g9TwWPesK1n e8Ilccs38gYl0bf/aLquAOTrXryGGl9sWJ3HejIeTSXXUm1SmTnVCJWBffMencTeFLvq PEgVALNTzk7SKLBiLzPvJEzKcJoeMBtjS8QTMjN0sAVp7xhoZ0sINSzRvPoj2SZ93Jhf 91IQ== MIME-Version: 1.0 X-Received: by 10.52.176.106 with SMTP id ch10mr260689vdc.41.1375430291646; Fri, 02 Aug 2013 00:58:11 -0700 (PDT) Received: by 10.220.96.78 with HTTP; Fri, 2 Aug 2013 00:58:11 -0700 (PDT) In-Reply-To: References: Date: Fri, 2 Aug 2013 03:58:11 -0400 Message-ID: Subject: Re: ZFS: unsupported ZFS version 5000 (should be 28) From: "Sam Fourman Jr." To: Tim Gustafson Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-fs@freebsd.org X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Aug 2013 07:58:13 -0000 > gpart bootcode -b /boot/pmbr -p /boot/gptzfsboot -i 1 da0 > > And then re-run that for each of da1 through da5, to install the boot > code on each. (I don't know if that helps or not, but it's a habit of > mine, in case a drive dies in the future). > > Is that the right command to run for this? > Yes, that SHOULD have worked, I just re looked at my script I used to setup my zpool for reference here is what I did from a -HEAD snapshot image gpart create -s gpt ada0 > /dev/null 2>&1 gpart add -b 34 -s 64k -t freebsd-boot ada0 > /dev/null 2>&1 gpart add -t freebsd-zfs -a 4k -l tank-disk0 ada0 > /dev/null 2>&1 gpart bootcode -b /boot/pmbr -p /boot/gptzfsboot -i 1 ada0 > /dev/null 2>&1 gnop create -S 4096 /dev/gpt/tank-disk0 > /dev/null 2>&1 Sam Fourman Jr.