Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Aug 2005 20:35:38 -0500
From:      Nikolas Britton <nikolas.britton@gmail.com>
To:        freebsd questions <freebsd-questions@freebsd.org>, freebsd-doc@freebsd.org
Subject:   FreeBSD handbook, 16.3.2.2
Message-ID:  <ef10de9a050807183540b388c3@mail.gmail.com>

next in thread | raw e-mail | index | archive | help
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?



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?ef10de9a050807183540b388c3>