From owner-freebsd-questions@FreeBSD.ORG Sat Nov 16 00:17:00 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 C011E183 for ; Sat, 16 Nov 2013 00:17:00 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7B28D2E8B for ; Sat, 16 Nov 2013 00:17:00 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.7/8.14.7) with ESMTP id rAG0Gxqv036525; Fri, 15 Nov 2013 17:16:59 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.7/8.14.7/Submit) with ESMTP id rAG0GwgC036522; Fri, 15 Nov 2013 17:16:59 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Fri, 15 Nov 2013 17:16:58 -0700 (MST) From: Warren Block To: aurfalien Subject: Re: gpart, to -a 4k or to -b 1M In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Fri, 15 Nov 2013 17:16:59 -0700 (MST) Cc: FreeBSD Questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Nov 2013 00:17:00 -0000 On Fri, 15 Nov 2013, aurfalien wrote: > Hi, > > Curious, for best practice in ensuring 4K alignment, should one do; > > gpart add ... -b 1M > > or > > gpart add ... -a 4k > > Thank in advance, They do different things. '-b 1M' starts the added partition at 1M but does not force it to be a multiple of 4K in size. '-a 4k' forces the added partition to start at the next 4K-aligned block, and forces the size to be a multiple of 4K. I recommend both for the first filesystem partition, and '-a 4k' for later ones.