]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/bsdlabel/bsdlabel.8
This commit was generated by cvs2svn to compensate for changes in r93507,
[FreeBSD/FreeBSD.git] / sbin / bsdlabel / bsdlabel.8
1 .\" Copyright (c) 1987, 1988, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" This code is derived from software contributed to Berkeley by
5 .\" Symmetric Computer Systems.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\" 3. All advertising materials mentioning features or use of this software
16 .\"    must display the following acknowledgment:
17 .\"     This product includes software developed by the University of
18 .\"     California, Berkeley and its contributors.
19 .\" 4. Neither the name of the University nor the names of its contributors
20 .\"    may be used to endorse or promote products derived from this software
21 .\"    without specific prior written permission.
22 .\"
23 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .\" SUCH DAMAGE.
34 .\"
35 .\"     @(#)disklabel.8 8.2 (Berkeley) 4/19/94
36 .\" $FreeBSD$
37 .\"
38 .Dd July 30, 1999
39 .Dt DISKLABEL 8
40 .Os
41 .Sh NAME
42 .Nm disklabel
43 .Nd read and write disk pack label
44 .Sh SYNOPSIS
45 .Nm
46 .Op Fl r
47 .Ar disk
48 .Nm
49 .Fl w
50 .Op Fl r
51 .Op Fl n
52 .Ar disk Ar disktype/auto
53 .Oo Ar packid Oc
54 .Nm
55 .Fl e
56 .Op Fl r
57 .Op Fl n
58 .Ar disk
59 .Nm
60 .Fl R
61 .Op Fl r
62 .Op Fl n
63 .Ar disk Ar protofile
64 .Nm
65 .Op Fl NW
66 .Ar disk
67 .Pp
68 .Nm
69 .Fl B
70 .Oo
71 .Fl b Ar boot1
72 .Fl s Ar boot2
73 .Oc
74 .Ar disk
75 .Oo Ar disktype/auto Oc
76 .Nm
77 .Fl w
78 .Fl B
79 .Op Fl n
80 .Oo
81 .Fl b Ar boot1
82 .Fl s Ar boot2
83 .Oc
84 .Ar disk Ar disktype/auto
85 .Oo Ar packid Oc
86 .Nm
87 .Fl R
88 .Fl B
89 .Op Fl n
90 .Oo
91 .Fl b Ar boot1
92 .Fl s Ar boot2
93 .Oc
94 .Ar disk Ar protofile
95 .Oo Ar disktype/auto Oc
96 .Sh DESCRIPTION
97 .Nm Disklabel
98 installs, examines or modifies the label on a disk drive or pack.  When writing
99 the label, it can be used to change the drive identification, the disk
100 partitions on the drive, or to replace a damaged label.  There are several forms
101 of the command that read (display), install or edit the label on a disk.  In
102 addition,
103 .Nm
104 can install bootstrap code.
105 .Ss Raw or in-core label
106 .Pp
107 The disk label is resident close to or at the beginning of each disk partition.
108 For faster access, the kernel maintains a copy in core at all times.  By
109 default, most
110 .Nm
111 access the in-core copy of the label.  To access the raw (on-disk) copy, use the
112 .Fl r
113 option.  This option allows a label to be installed on a disk without kernel
114 support for a label, such as when labels are first installed on a system; it
115 must be used when first installing a label on a disk.  The specific effect of
116 .Fl r
117 is described under each command.
118 .Pp
119 .Ss Disk device name
120 .Pp
121 All
122 .Nm
123 forms require a disk device name, which should always be the raw
124 device name representing the disk or slice.  For example
125 .Pa da0
126 represents the entire disk irregardless of any DOS partitioning,
127 and
128 .Pa da0s1
129 represents a slice.  Some devices, most notably
130 .Ar ccd ,
131 require that the
132 .Dq whole-disk
133 (or
134 .Dq c )
135 partition be specified.  For example
136 .Pa ccd0c .
137 You do not have to include the
138 .Pa /dev/
139 path prefix when specifying the device.
140 .Nm
141 will automatically prepend it.
142 .Ss Reading the disk label
143 .Pp
144 To examine the label on a disk drive, use
145 .Nm
146 without options:
147 .Pp
148 .Nm
149 .Op Fl r
150 .Ar disk
151 .Pp
152 .Ar disk
153 represents the raw disk in question, and may be in the form
154 .Pa da0
155 or
156 .Pa /dev/da0c .
157 It will display all of the parameters associated with the drive and its
158 partition layout.  Unless the
159 .Fl r
160 flag is given,
161 the kernel's in-core copy of the label is displayed;
162 if the disk has no label, or the partition types on the disk are incorrect,
163 the kernel may have constructed or modified the label.
164 If the
165 .Fl r
166 flag is given,
167 .Nm
168 reads the label from the raw disk and displays it.  Both versions are usually
169 identical except in the case where a label has not yet been initialized or
170 is corrupt.
171 .Ss Writing a standard label
172 .Pp
173 To write a standard label, use the form
174 .Pp
175 .Nm
176 .Fl w
177 .Op Fl r
178 .Op Fl n
179 .Ar disk Ar disktype/auto
180 .Oo Ar packid Oc
181 .Pp
182 .Nm
183 .Fl w
184 .Op Fl r
185 .Op Fl n
186 .Ar disk
187 auto
188 .Pp
189 The required arguments to
190 .Nm
191 are the drive to be labeled and the drive type as described in the
192 .Xr disktab 5
193 file.  The drive parameters and partitions are taken from that file.  If
194 different disks of the same physical type are to have different partitions, it
195 will be necessary to have separate disktab entries describing each, or to edit
196 the label after installation as described below.  The optional argument is a
197 pack identification string, up to 16 characters long.  The pack id must be
198 quoted if it contains blanks.
199 .Pp
200 If the
201 .Fl n
202 flag is given, no data will be written to the device, and instead the
203 disklabel that would have been written will be printed to stdout.
204 .Pp
205 If the
206 .Fl r
207 flag is given, the disk sectors containing the label and bootstrap
208 will be written directly.
209 A side-effect of this is that any existing bootstrap code will be overwritten
210 and the disk rendered unbootable.  See the boot options below for a method of
211 writing the label and the bootstrap at the same time.
212 If
213 .Fl r
214 is not specified,
215 the existing label will be updated via the in-core copy and any bootstrap
216 code will be unaffected.
217 If the disk does not already have a label, the
218 .Fl r
219 flag must be used.
220 In either case, the kernel's in-core label is replaced.
221 .Pp
222 For a virgin disk that is not known to
223 .Xr disktab 5 ,
224 .Ar disktype
225 can be specified as
226 .Dq auto .
227 In this case, the driver is requested to produce a virgin label for the
228 disk.  This might or might not be successful, depending on whether the
229 driver for the disk is able to get the required data without reading
230 anything from the disk at all.  It will likely succeed for all SCSI
231 disks, most IDE disks, and vnode devices.  Writing a label to the
232 disk is the only supported operation, and the
233 .Ar disk
234 itself must be provided as the canonical name, i.e. not as a full
235 path name.
236 .Pp
237 For most harddisks, a label based on percentages for most partitions (and
238 one partition with a size of
239 .Ql * )
240 will produce a reasonable configuration.
241 .Pp
242 PC-based systems have special requirements in order for the BIOS to properly
243 recognize a
244 .Fx
245 disklabel.  Older systems may require what is known as a
246 .Dq dangerously dedicated
247 disklabel, which creates a fake DOS partition to work around problems older
248 BIOSes have with modern disk geometries.  On newer systems you generally want
249 to create a normal DOS slice using
250 .Ar fdisk
251 and then create a
252 .Fx
253 disklabel within that slice.  This is described
254 later on in this page.
255 .Pp
256 Installing a new disklabel does not in of itself allow your system to boot
257 a kernel using that label.  You must also install boot blocks, which is
258 described later on in this manual page.
259 .Ss Editing an existing disk label
260 .Pp
261 To edit an existing disk label, use the form
262 .Pp
263 .Nm
264 .Fl e
265 .Op Fl r
266 .Op Fl n
267 .Ar disk
268 .Pp
269 This command reads the label from the in-core kernel copy, or directly from the
270 disk if the
271 .Fl r
272 flag is also specified.  The label is written to a file in ASCII and then
273 supplied to an editor for changes.  If no editor is specified in an
274 .Ev EDITOR
275 environment variable,
276 .Xr vi 1
277 is used.  When the editor terminates, the label file is used to rewrite the disk
278 label.  Existing bootstrap code is unchanged regardless of whether
279 .Fl r
280 was specified.  If
281 .Fl n
282 is specified, no data will be written to the device, and instead the
283 disklabel that would have been written will be printed to stdout.  This is
284 useful to see how a partitioning scheme will work out for a specific disk.
285 .Ss Restoring a disk label from a file
286 .Pp
287 To restore a disk label from a file, use the form
288 .Pp
289 .Nm
290 .Fl R
291 .Op Fl r
292 .Op Fl n
293 .Ar disk Ar protofile
294 .Pp
295 .Nm
296 is capable of restoring a disk label that was previously saved in a file in ASCII format.
297 The prototype file used to create the label should be in the same format as that
298 produced when reading or editing a label.  Comments are delimited by
299 .Ar \&#
300 and newline.  As when writing a new label, any existing bootstrap code will be
301 clobbered if
302 .Fl r
303 is specified and will be unaffected otherwise.  See the boot options below for a
304 method of restoring the label and writing the bootstrap at the same time.
305 If
306 .Fl n
307 is used, no data will be written to the device, and instead the
308 disklabel that would have been written will be printed to stdout.  This is
309 useful to see how a partitioning scheme will work out for a specific disk.
310 .Ss Enabling and disabling writing to the disk label area
311 .Pp
312 By default, it is not possible to write to the disk label area at the beginning
313 of a disk.  The disk driver silently ignores any attempt to do so.  If you need
314 to write to this area (for example, to obliterate the label), use the form
315 .Pp
316 .Nm
317 .Fl W
318 .Ar disk
319 .Pp
320 To disallow writing to the label area after previously allowing it, use the
321 command
322 .Pp
323 .Nm
324 .Fl N
325 .Ar disk
326 .Ss Installing bootstraps
327 .Pp
328 The final three forms of
329 .Nm
330 are used to install bootstrap code.  If you are creating a
331 .Dq dangerously-dedicated
332 partition for compatibility with older PC systems,
333 you generally want to specify the raw disk name such as
334 .Pa da0 .
335 If you are creating a label within an existing DOS slice, you should specify
336 the slice name such as
337 .Pa da0s1 .
338 Making a partition bootable can be tricky.  If you are using a normal DOS
339 slice you typically install (or leave) a standard MBR on the base disk and
340 then install the
341 .Fx
342 bootblocks in the slice.
343 .Pp
344 .Nm
345 .Fl B
346 .Oo
347 .Fl b Ar boot1
348 .Fl s Ar boot2
349 .Oc
350 .Ar disk
351 .Oo Ar disktype Oc
352 .Pp
353 This form installs the bootstrap only.  It does not change the disk label.
354 You should never use this command on a base disk unless you intend to create a
355 .Dq dangerously-dedicated
356 disk, such as
357 .Ar da0 .
358 This command is typically run on a slice such as
359 .Ar da0s1 .
360 .Pp
361 .Nm
362 .Fl w
363 .Fl B
364 .Op Fl n
365 .Oo
366 .Fl b Ar boot1
367 .Fl s Ar boot2
368 .Oc
369 .Ar disk Ar disktype
370 .Oo Ar packid Oc
371 .Pp
372 This form corresponds to the
373 .Dq write label
374 command described above.
375 In addition to writing a new volume label, it also installs the bootstrap.
376 If run on a base disk this command will create a
377 .Dq dangerously-dedicated
378 label.  This command is normally run on a slice rather than a base disk.
379 If
380 .Fl n
381 is used, no data will be written to the device, and instead the
382 disklabel that would have been written will be printed to stdout.
383 .Pp
384 .Nm
385 .Fl R
386 .Fl B
387 .Op Fl n
388 .Oo
389 .Fl b Ar boot1
390 .Fl s Ar boot2
391 .Oc
392 .Ar disk Ar protofile
393 .Oo Ar disktype Oc
394 .Pp
395 This form corresponds to the
396 .Dq restore label
397 command described above.
398 In addition to restoring the volume label, it also installs the bootstrap.
399 If run on a base disk this command will create a
400 .Dq dangerously-dedicated
401 label.  This command is normally run on a slice rather than a base disk.
402 .Pp
403 The bootstrap commands always access the disk directly, so it is not necessary
404 to specify the
405 .Fl r
406 flag.  If
407 .Fl n
408 is used, no data will be written to the device, and instead the
409 disklabel that would have been written will be printed to stdout.
410 .Pp
411 The bootstrap code is comprised of two boot programs.  Specify the name of the
412 boot programs to be installed in one of these ways:
413 .Bl -enum
414 .It
415 Specify the names explicitly with the
416 .Fl b
417 and
418 .Fl s
419 flags.
420 .Fl b
421 indicates the primary boot program and
422 .Fl s
423 the secondary boot program.  The boot programs are located in
424 .Pa /boot .
425 .It
426 If the
427 .Fl b
428 and
429 .Fl s
430 flags are not specified, but
431 .Ar disktype
432 was specified, the names of the programs are taken from the
433 .Dq b0
434 and
435 .Dq b1
436 parameters of the
437 .Xr disktab 5
438 entry for the disk if the disktab entry exists and includes those parameters.
439 .It
440 Otherwise, the default boot image names are used:
441 .Pa /boot/boot1
442 and
443 .Pa /boot/boot2
444 for the standard stage1 and stage2 boot images (details may vary
445 on architectures like the Alpha, where only a single-stage boot is used).
446 .El
447 .Ss Initializing/Formatting a bootable disk from scratch
448 .Pp
449 To initialize a disk from scratch the following sequence is recommended.
450 Please note that this will wipe everything that was previously on the disk,
451 including any
452 .No non- Ns Fx
453 slices.
454 .Bl -enum
455 .It
456 Use
457 .Ar fdisk
458 to initialize the DOS partition table, creating a real whole-disk slice to
459 hold the
460 .Fx
461 disklabel, and installing a master boot record.
462 .It
463 Use
464 .Ar disklabel
465 to initialize a virgin
466 .Fx
467 disklabel and install
468 .Fx
469 boot blocks.
470 .It
471 Use
472 .Ar disklabel
473 to edit your newly created label, adding appropriate partitions.
474 .It
475 Finally newfs the filesystem partitions you created in the label.  A typical
476 disklabel partitioning scheme would be to have an
477 .Dq a
478 partition
479 of approximately 128MB to hold the root filesystem, a
480 .Dq b
481 partition for
482 swap, a
483 .Dq d
484 partition for /var (usually 128MB), an
485 .Dq e
486 partition
487 for /var/tmp (usually 128MB), an
488 .Dq f
489 partition for /usr (usually around 2G),
490 and finally a
491 .Dq g
492 partition for /home (usually all remaining space).
493 Your mileage may vary.
494 .El
495 .Pp
496 .Nm fdisk Fl BI Ar da0
497 .Pp
498 .Nm
499 .Fl w
500 .Fl B
501 .Ar da0s1
502 auto
503 .Pp
504 .Pp
505 .Nm
506 .Fl e
507 .Ar da0s1
508 .Sh FILES
509 .Bl -tag -width Pa -compact
510 .It Pa /etc/disktab
511 .It Pa /boot/
512 .It Pa /boot/boot<n>
513 .El
514 .Sh SAVED FILE FORMAT
515 .Nm
516 uses an ASCII version of the label when examining, editing or restoring a disk
517 label.  The format is:
518 .Bd -literal -offset 4n
519 # /dev/da1c:
520 type: SCSI
521 disk: da0s1
522 label:
523 flags:
524 bytes/sector: 512
525 sectors/track: 51
526 tracks/cylinder: 19
527 sectors/cylinder: 969
528 cylinders: 1211
529 sectors/unit: 1173930
530 rpm: 3600
531 interleave: 1
532 trackskew: 0
533 cylinderskew: 0
534 headswitch: 0           # milliseconds
535 track-to-track seek: 0  # milliseconds
536 drivedata: 0
537
538 8 partitions:
539 #        size   offset    fstype   [fsize bsize bps/cpg]
540   a:    81920        0    4.2BSD     1024  8192    16   # (Cyl.    0 - 84*)
541   b:   160000    81920      swap                        # (Cyl.   84* - 218*)
542   c:  1173930        0    unused        0     0         # (Cyl.    0 - 1211*)
543   h:   962010   211920     vinum                        # (Cyl.  218*- 1211*)
544 .Ed
545 .Pp
546 Lines starting with a # mark are comments.  Most of the other specifications are
547 no longer used.  The ones which must still be set correctly are:
548 .Pp
549 .Bl -hang -width 20n
550 .It Nm label
551 is an optional label, set by the
552 .Ar packid
553 option when writing a label.
554 .It Nm flags
555 Flags may be
556 .Ar removable ,
557 .Ar ecc
558 or
559 .Ar badsect .
560 .Ar removable
561 is set for removable media drives, but no current
562 .Fx
563 driver evaluates this
564 flag.
565 .Ar ecc
566 is no longer supported;
567 .Ar badsect
568 specifies that the drive can perform bad sector remapping.
569 .It Nm sectors/unit
570 describes the total size of the disk.  This value must be correct.
571 .It Nm the partition table
572 This is the
573 .Ux
574 partition table, not the Microsoft partition table described in
575 .Xr fdisk 8 .
576 .El
577 .Pp
578 The partition table can have up to 8 entries.  It contains the following
579 information:
580 .Bl -hang -width 10n
581 .It identifier
582 The partition identifier is a single letter in the range
583 .Dq a
584 to
585 .Dq h .
586 By convention, partition
587 .Dq c
588 is reserved to describe the entire disk.
589 .It size
590 is the size of the partition in sectors,
591 .Cm K
592 (kilobytes - 1024),
593 .Cm M
594 (megabytes - 1024*1024),
595 .Cm G
596 (gigabytes - 1024*1024*1024),
597 .Cm %
598 (percentage of free space AFTER removing any fixed-size partitions other
599 than partition
600 .Dq c) ,
601 or
602 .Cm *
603 (all remaining free space AFTER fixed-size and percentage
604 partitions).  For partition
605 .Dq c ,
606 a size of
607 .Cm *
608 indicates the entire disk.  Lowercase versions of
609 .Cm K , M ,
610 and
611 .Cm G
612 are allowed.
613 Size and type should be specifed without any spaces between them.
614 .Pp
615 Example: 2097152, 1g, 1024m and 1048576k are all the same size
616 (assuming 512-byte sectors).
617 .It offset
618 is the offset of the start of the partition from the beginning of the
619 drive in sectors, or
620 .Cm *
621 to have
622 .Nm
623 calculate the correct offset to use (the end of the previous partition plus
624 one, ignoring partition
625 .Dq c .
626 For partition
627 .Dq c ,
628 .Cm *
629 will be interpreted as an offset of 0.
630 .It fstype
631 describes the purpose of the partition.  The example shows all currently used
632 partition types.
633 For UFS file systems and ccd partitions, use type
634 .Cm 4.2BSD .
635 For Vinum drives, use type
636 .Cm vinum .
637 Other common types are
638 .Cm unused
639 and
640 .Cm swap .
641 By convention, partition
642 .Dq c
643 represents the entire slice and should be of type
644 .Cm unused ,
645 though
646 .Nm
647 does not enforce this convention.
648 .Nm
649 also knows about a number of other partition types, none of which are in current
650 use.
651 See the definitions starting with
652 .Dv FS_UNUSED
653 in
654 .Pa /usr/include/sys/disklabel.h
655 for more details.
656 .It fsize
657 For
658 .Cm 4.2BSD
659 and LFS file systems only, the fragment size.  Defaults to 1024 for
660 partitions smaller than 1 GB, 4096 for partitions 1GB or larger.
661 .It bsize
662 For
663 .Cm 4.2BSD
664 and LFS file systems only, the block size.  Defaults to 8192 for
665 partitions smaller than 1 GB, 16384 for partitions 1GB or larger.
666 .It bps/cpg
667 For
668 .Cm 4.2BSD
669 file systems, the number of cylinders in a cylinder group.  For LFS file
670 systems, the segment shift value.  Defaults to 16 for
671 partitions smaller than 1 GB, 64 for partitions 1GB or larger.
672 .El
673 .Pp
674 The remainder of the line is a comment and shows the cylinder allocations based
675 on the obsolete (but possibly correct) geometry information about the drive.
676 The asterisk (*) indicates that the partition does not begin or end exactly on a
677 cylinder boundary.
678 .Sh EXAMPLES
679 .Dl disklabel da0
680 .Pp
681 Display the in-core label for
682 .Pa da0s1
683 as obtained via
684 .Pa /dev/da0s1 .
685 When reading a label,
686 .Fx
687 will allow you to specify the base disk name
688 even if the label resides on a slice.  However, to be proper you should
689 specify the base disk name only if you are using a
690 .Dq dangerously-dedicated
691 label.  Normally you specify the slice.
692 .Pp
693 .Dl disklabel da0s1 > savedlabel
694 .Pp
695 Save the in-core label for
696 .Pa da0s1
697 into the file
698 .Pa savedlabel .
699 This file can be used with the
700 .Fl R
701 flag to restore the label at a later date.
702 .Pp
703 .Dl disklabel -w -r /dev/da0s1 da2212 foo
704 .Pp
705 Create a label for
706 .Pa da0s1
707 based on information for
708 .Dq da2212
709 found in
710 .Pa /etc/disktab .
711 Any existing bootstrap code will be clobbered.
712 .Pp
713 .Dl disklabel -e -r da0s1
714 .Pp
715 Read the on-disk label for
716 .Pa da0s1 ,
717 edit it and reinstall in-core as well as on-disk.  Existing bootstrap code is
718 unaffected.
719 .Pp
720 .Dl disklabel -e -r -n da0s1
721 .Pp
722 Read the on-disk label for
723 .Pa da0s1 ,
724 edit it, and display what the new label would be (in sectors).  It does
725 NOT install the new label either in-core or on-disk.
726 .Pp
727 .Dl disklabel -r -w da0s1 auto
728 .Pp
729 Try to auto-detect the required information from
730 .Pa da0s1 ,
731 and write a new label to the disk.  Use another disklabel -e command to edit the
732 partitioning and file system information.
733 .Pp
734 .Dl disklabel -R da0s1 savedlabel
735 .Pp
736 Restore the on-disk and in-core label for
737 .Pa da0s1
738 from information in
739 .Pa savedlabel .
740 Existing bootstrap code is unaffected.
741 .Pp
742 .Dl disklabel -R -n da0s1 label_layout
743 .Pp
744 Display what the label would be for
745 .Pa da0s1
746 using the partition layout in
747 .Pa label_layout .
748 This is useful for determining how much space would be alloted for various
749 partitions with a labelling scheme using
750 .Cm % Ns -based
751 or
752 .Cm *
753 partition sizes.
754 .Pp
755 .Dl disklabel -B da0s1
756 .Pp
757 Install a new bootstrap on
758 .Pa da0s1 .
759 The boot code comes from
760 .Pa /boot/boot1
761 and possibly
762 .Pa /boot/boot2 .
763 On-disk and in-core labels are unchanged.
764 .Pp
765 .Dl disklabel -w -B /dev/da0s1 -b newboot1 -s newboot da2212
766 .Pp
767 Install a new label and bootstrap.
768 The label is derived from disktab information for
769 .Dq da2212
770 and installed both in-core and on-disk.
771 The bootstrap code comes from the files
772 .Pa /boot/newboot1
773 and
774 .Pa /boot/newboot2 .
775 .Pp
776 .Dl dd if=/dev/zero of=/dev/da0 bs=512 count=32
777 .Dl fdisk -BI da0
778 .Dl dd if=/dev/zero of=/dev/da0s1 bs=512 count=32
779 .Dl disklabel -w -B da0s1 auto
780 .Dl disklabel -e da0s1
781 .Pp
782 Completely wipe any prior information on the disk, creating a new bootable
783 disk with a DOS partition table containing one
784 .Dq whole-disk
785 slice.  Then
786 initialize the slice, then edit it to your needs.  The
787 .Pa dd
788 commands are optional, but may be necessary for some BIOSes to properly
789 recognize the disk.
790 .Pp
791 This is an example disklabel that uses some of the new partition size types
792 such as
793 .Cm % , M , G ,
794 and
795 .Cm * ,
796 which could be used as a source file for
797 .Pp
798 .Dl disklabel -R ad0s1c new_label_file
799 .Bd -literal -offset 4n
800 # /dev/ad0s1c:
801 type: ESDI
802 disk: ad0s1
803 label:
804 flags:
805 bytes/sector: 512
806 sectors/track: 63
807 tracks/cylinder: 16
808 sectors/cylinder: 1008
809 cylinders: 40633
810 sectors/unit: 40959009
811 rpm: 3600
812 interleave: 1
813 trackskew: 0
814 cylinderskew: 0
815 headswitch: 0           # milliseconds
816 track-to-track seek: 0  # milliseconds
817 drivedata: 0
818
819 8 partitions:
820 #        size   offset    fstype   [fsize bsize bps/cpg]
821   a:   400M        0    4.2BSD     4096 16384    75     # (Cyl.    0 - 812*)
822   b:     1G        *      swap
823   c:      *        *    unused
824   e: 204800        *    4.2BSD
825   f:     5g        *    4.2BSD
826   g:      *        *    4.2BSD
827 .Ed
828 .Sh SEE ALSO
829 .Xr ccd 4 ,
830 .Xr disklabel 5 ,
831 .Xr disktab 5 ,
832 .Xr boot0cfg 8 ,
833 .Xr fdisk 8 ,
834 .Xr vinum 8
835 .Sh DIAGNOSTICS
836 The kernel device drivers will not allow the size of a disk partition
837 to be decreased or the offset of a partition to be changed while it is open.
838 Some device drivers create a label containing only a single large partition
839 if a disk is unlabeled; thus, the label must be written to the
840 .Dq a
841 partition of the disk while it is open.  This sometimes requires the desired
842 label to be set in two steps, the first one creating at least one other
843 partition, and the second setting the label on the new partition while shrinking
844 the
845 .Dq a
846 partition.
847 .Pp
848 On some machines the bootstrap code may not fit entirely in the area
849 allocated for it by some filesystems.
850 As a result, it may not be possible to have filesystems on some partitions
851 of a
852 .Dq bootable
853 disk.
854 When installing bootstrap code,
855 .Nm
856 checks for these cases.
857 If the installed boot code would overlap a partition of type FS_UNUSED
858 it is marked as type FS_BOOT.
859 The
860 .Xr newfs 8
861 utility will disallow creation of filesystems on FS_BOOT partitions.
862 Conversely, if a partition has a type other than FS_UNUSED or FS_BOOT,
863 .Nm
864 will not install bootstrap code that overlaps it.
865 .Sh BUGS
866 When a disk name is given without a full pathname,
867 the constructed device name uses the
868 .Dq c
869 partition.
870 .Pp
871 For the i386 architecture, the primary bootstrap sector contains
872 an embedded
873 .Em fdisk
874 table.
875 .Nm Disklabel
876 takes care to not clobber it when installing a bootstrap only
877 .Pq Fl B ,
878 or when editing an existing label
879 .Pq Fl e ,
880 but it unconditionally writes the primary bootstrap program onto
881 the disk for
882 .Fl w
883 or
884 .Fl R ,
885 thus replacing the
886 .Em fdisk
887 table by the dummy one in the bootstrap program.  This is only of
888 concern if the disk is fully dedicated, so that the
889 .Bx
890 disklabel
891 starts at absolute block 0 on the disk.
892 .Pp
893 .Nm
894 does not perform all possible error checking.  Warning *is* given if partitions
895 overlap; if an absolute offset does not match the expected offset; if the
896 .Dq c
897 partition does not start at 0 or does not cover the entire slice; if a
898 partition runs past the end of the device; and a number of other errors; but
899 no warning is given if space remains unused.