From owner-freebsd-questions@FreeBSD.ORG Mon Dec 23 19:50:33 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 576E12BD for ; Mon, 23 Dec 2013 19:50:33 +0000 (UTC) Received: from oneyou.mcmli.com (oneyou.mcmli.com [IPv6:2001:470:1d:8da::100]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1E5DC1A48 for ; Mon, 23 Dec 2013 19:50:33 +0000 (UTC) Received: from sentry.24cl.com (sentry.24cl.com [IPv6:2001:470:89e9:1:feed::1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "sentry.24cl.com", Issuer "Mike's Certificate Authority" (verified OK)) by oneyou.mcmli.com (Postfix) with ESMTPS id 3dpB4R6XTKz1DNj for ; Mon, 23 Dec 2013 14:50:31 -0500 (EST) Received: from BigBloat (bigbloat.24cl.home [10.20.1.4]) by sentry.24cl.com (Postfix) with ESMTP id 3dpB4Q152hz1Bjf for ; Mon, 23 Dec 2013 14:50:30 -0500 (EST) Message-ID: <201312231450290379.01628D38@smtp.24cl.home> In-Reply-To: References: <201312221402470675.0128102B@smtp.24cl.home> <201312231026080790.007089CA@smtp.24cl.home> X-Mailer: Courier 3.50.00.09.1098 (http://www.rosecitysoftware.com) (P) Date: Mon, 23 Dec 2013 14:50:29 -0500 From: "Mike." To: freebsd-questions@freebsd.org Subject: re: [10.0RC2] partition labels during install Content-Type: text/plain; charset="us-ascii" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Dec 2013 19:50:33 -0000 On 12/23/2013 at 12:21 PM Warren Block wrote: |On Mon, 23 Dec 2013, Mike. wrote: | | [snip] | |>> You did not say whether this was a GPT disk, |> |> Is there a way to check this? | |The first line of 'gpart show' output for a disk identifies the |partitioning scheme: | % gpart show ada0 | => 34 500118125 ada0 GPT (238G) | ... | |GPT labels can be set with 'gpart modify -l mynewlabel ...'. On MBR, I |use UFS labels where possible, and glabel only where the partition has |no built-in metadata, like swap. ============= So much to learn. ;) OK, I checked, and the disk is a GPT disk. The next time I have a chance to play, I'll try the gpart modify command and see how things go. Thanks.