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