From owner-freebsd-doc@FreeBSD.ORG Mon Aug 8 01:35:41 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 298B816A420 for ; Mon, 8 Aug 2005 01:35:41 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D95B43D46 for ; Mon, 8 Aug 2005 01:35:40 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by wproxy.gmail.com with SMTP id i5so692966wra for ; Sun, 07 Aug 2005 18:35:38 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=kYvBn97RZB2UYX6uOsjza7OdBZP5T1bxY5hxyrt6EOENufWdTI0EjXDvRjlSe1kQk9PVd9bMut5wTUDQ1JV6GZ3oFUKbssz4gNcgyetDHASBuPHv5VzLb8qNrWrqmpXOVY+npnDOZVTCx/Uzz1nzRJpy/Lb4V745nEM2jWvt1/U= Received: by 10.54.147.3 with SMTP id u3mr4561929wrd; Sun, 07 Aug 2005 18:35:38 -0700 (PDT) Received: by 10.54.124.11 with HTTP; Sun, 7 Aug 2005 18:35:38 -0700 (PDT) Message-ID: Date: Sun, 7 Aug 2005 20:35:38 -0500 From: Nikolas Britton To: freebsd questions , freebsd-doc@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Cc: Subject: FreeBSD handbook, 16.3.2.2 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Nikolas Britton List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2005 01:35:41 -0000 Quoting the FreeBSD Handbook: "16.3.2.2 Dedicated If you will not be sharing the new drive with another operating system, you may use the dedicated mode. Remember this mode can confuse Microsoft operating systems; however, no damage will be done by them. IBM's OS/2(r) however, will "appropriate" any partition it finds which it does not understand. # dd if=3D/dev/zero of=3D/dev/da1 bs=3D1k count=3D1 # disklabel -Brw da1 auto # disklabel -e da1 # create the `e' partition # newfs -d0 /dev/da1e # mkdir -p /1 # vi /etc/fstab # add an entry for /dev/da1e # mount /1 " "# disklabel -Brw da1 auto" what did the -r option do, why is it used in this example when bsdlabel doesn't support it. "# disklabel -e da1 # create the `e' partition" Why do I have to make the 'e' partition, explain why 'e' is used and why can't use other ones like a, c, or d? An explanation of what to do when your editing the partition table would also be nice. "# newfs -d0 /dev/da1e" This command doesn't even work! and what about -O2 and -U options? if it did work I would have made a UFS1 partition with no soft-updates. "# mkdir -p /1" -p? what do I need that for?