rc.d: Use stop_boot() function to really stop boot
[dragonfly.git] / sbin / disklabel64 / disklabel64.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. Neither the name of the University nor the names of its contributors
16 .\"    may be used to endorse or promote products derived from this software
17 .\"    without specific prior written permission.
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 .\" SUCH DAMAGE.
30 .\"
31 .\"     @(#)disklabel.8 8.2 (Berkeley) 4/19/94
32 .\" $FreeBSD: src/sbin/disklabel/disklabel.8,v 1.15.2.22 2003/04/17 17:56:34 trhodes Exp $
33 .\"
34 .Dd July 21, 2018
35 .Dt DISKLABEL64 8
36 .Os
37 .Sh NAME
38 .Nm disklabel64
39 .Nd read and write 64 bit disk pack label
40 .Sh SYNOPSIS
41 .Nm
42 .Op Fl r
43 .Ar disk
44 .Nm
45 .Fl w
46 .Op Fl r
47 .Op Fl n
48 .Ar disk
49 .Op Ar disktype Ns / Ns Cm auto Op Ar packid
50 .Nm
51 .Fl e
52 .Op Fl r
53 .Op Fl n
54 .Ar disk
55 .Nm
56 .Fl R
57 .Op Fl r
58 .Op Fl n
59 .Ar disk Ar protofile
60 .Nm
61 .Op Fl NW
62 .Ar disk
63 .Pp
64 .Nm
65 .Fl B
66 .Oo
67 .Fl b Ar boot1
68 .Fl s Ar boot2
69 .Oc
70 .Ar disk
71 .Oo Ar disktype Ns / Ns Cm auto Oc
72 .Nm
73 .Fl w
74 .Fl B
75 .Op Fl n
76 .Oo
77 .Fl b Ar boot1
78 .Fl s Ar boot2
79 .Oc
80 .Ar disk
81 .Op Ar disktype Ns / Ns Cm auto Op Ar packid
82 .Nm
83 .Fl R
84 .Fl B
85 .Op Fl n
86 .Oo
87 .Fl b Ar boot1
88 .Fl s Ar boot2
89 .Oc
90 .Ar disk Ar protofile
91 .Oo Ar disktype Ns / Ns Cm auto Oc
92 .Sh DESCRIPTION
93 The
94 .Nm
95 utility
96 installs, examines or modifies a 64 bit label on a disk drive or pack.
97 When writing
98 the label, it can be used to change the drive identification, the disk
99 partitions on the drive, or to replace a damaged label.
100 There are several forms
101 of the command that read (display), install or edit the label on a disk.
102 In
103 addition,
104 .Nm
105 can install bootstrap code.
106 .Ss Raw or in-core label
107 The disk label resides close to or at the beginning of each disk slice.
108 For faster access, the kernel maintains a copy in core at all times.
109 By
110 default, most forms of the
111 .Nm
112 command access the in-core copy of the label.
113 To access the raw (on-disk)
114 copy, use the
115 .Fl r
116 option.
117 This option allows a label to be installed on a disk without kernel
118 support for a label, such as when labels are first installed on a system; it
119 must be used when first installing a label on a disk.
120 The specific effect of
121 .Fl r
122 is described under each command.
123 .Ss Disk device name
124 All
125 .Nm
126 forms require a disk device name, which should always be the raw
127 device name representing the disk or slice.
128 .Dx
129 uses the following scheme for slice numbering:
130 If the disk doesn't use GPT (typically laid out by
131 .Xr gpt 8 ) ,
132 but e.g.\& MBR (typically laid out by
133 .Xr fdisk 8 ) ,
134 then slice 0, e.g.\&
135 .Pa da0s0 ,
136 represents the entire disk regardless of any DOS partitioning.
137 Slice 0 is called the compatibility slice,
138 and slice 1 and onward, e.g.\&
139 .Pa da0s1 ,
140 represents a
141 .Bx
142 slice.
143 If the disk does use GPT, then all slices are
144 .Bx
145 slices, slice 0 isn't special, it is just the first slice on the disk.
146 You do not have to include the
147 .Pa /dev/
148 path prefix when specifying the device.
149 The
150 .Nm
151 utility will automatically prepend it.
152 .Ss Reading the disk label
153 To examine the label on a disk drive, use
154 .Nm
155 without options:
156 .Pp
157 .Nm
158 .Op Fl r
159 .Ar disk
160 .Pp
161 .Ar disk
162 represents the raw disk in question, and may be in the form
163 .Pa da0s1
164 or
165 .Pa /dev/da0s1 .
166 It will display all of the parameters associated with the drive and its
167 partition layout.
168 Unless the
169 .Fl r
170 flag is given,
171 the kernel's in-core copy of the label is displayed;
172 if the disk has no label, or the partition types on the disk are incorrect,
173 the kernel may have constructed or modified the label.
174 If the
175 .Fl r
176 flag is given,
177 .Nm
178 reads the label from the raw disk and displays it.
179 Both versions are usually
180 identical except in the case where a label has not yet been initialized or
181 is corrupt.
182 .Ss Writing a standard label
183 To write a standard label, use the form
184 .Pp
185 .Nm
186 .Fl w
187 .Op Fl r
188 .Op Fl n
189 .Ar disk
190 .Op Ar disktype Ns / Ns Cm auto Op Ar packid
191 .Pp
192 The required argument to
193 .Nm
194 is the drive to be labeled.
195 The first optional argument is the drive type as described in the
196 .Xr disktab 5
197 file, from which the drive parameters and partitions are taken.
198 If not specified, then the
199 .Cm auto
200 type is assumed to make a virgin label for the disk as described below.
201 If
202 different disks of the same physical type are to have different partitions, it
203 will be necessary to have separate disktab entries describing each, or to edit
204 the label after installation as described below.
205 The optional argument is a
206 pack identification string, up to 63 characters long.
207 The pack id must be
208 quoted if it contains blanks.
209 .Pp
210 If the
211 .Fl n
212 flag is given, no data will be written to the device, and instead the
213 disklabel that would have been written will be printed to stdout.
214 .Pp
215 If the
216 .Fl r
217 flag is given, the disk sectors containing the label and bootstrap
218 will be written directly.
219 A side-effect of this is that any existing bootstrap code will be overwritten
220 and the disk rendered unbootable.
221 See the boot options below for a method of
222 writing the label and the bootstrap at the same time.
223 If
224 .Fl r
225 is not specified,
226 the existing label will be updated via the in-core copy and any bootstrap
227 code will be unaffected.
228 If the disk does not already have a label, the
229 .Fl r
230 flag must be used.
231 In either case, the kernel's in-core label is replaced.
232 .Pp
233 For a virgin disk that is not known to
234 .Xr disktab 5 ,
235 .Ar disktype
236 can be specified as
237 .Cm auto .
238 In this case, the driver is requested to produce a virgin label for the
239 disk.
240 This might or might not be successful, depending on whether the
241 driver for the disk is able to get the required data without reading
242 anything from the disk at all.
243 It will likely succeed for all SCSI
244 disks, most IDE disks, and vnode devices.
245 Writing a label to the
246 disk is the only supported operation.
247 .Pp
248 For most harddisks, a label based on percentages for most partitions (and
249 one partition with a size of
250 .Ql * )
251 will produce a reasonable configuration.
252 .Pp
253 PC-based systems have special requirements in order for the BIOS to properly
254 recognize a
255 .Dx
256 disklabel.
257 Older systems may require what is known as a
258 .Dq dangerously dedicated
259 disklabel, which creates a fake DOS partition to work around problems older
260 BIOSes have with modern disk geometries.
261 On newer systems you generally want
262 to create a normal DOS partition using
263 .Ar fdisk
264 and then create a
265 .Dx
266 disklabel within that slice.
267 This is described
268 later on in this page.
269 .Pp
270 Installing a new disklabel does not in of itself allow your system to boot
271 a kernel using that label.
272 You must also install boot blocks, which is
273 described later on in this manual page.
274 .Ss Editing an existing disk label
275 To edit an existing disk label, use the form
276 .Pp
277 .Nm
278 .Fl e
279 .Op Fl r
280 .Op Fl n
281 .Ar disk
282 .Pp
283 This command reads the label from the in-core kernel copy, or directly from the
284 disk if the
285 .Fl r
286 flag is also specified.
287 The label is written to a file in ASCII and then
288 supplied to an editor for changes.
289 If no editor is specified in an
290 .Ev EDITOR
291 environment variable,
292 .Xr vi 1
293 is used.
294 When the editor terminates, the label file is used to rewrite the disk label.
295 Existing bootstrap code is unchanged regardless of whether
296 .Fl r
297 was specified.
298 If
299 .Fl n
300 is specified, no data will be written to the device, and instead the
301 disklabel that would have been written will be printed to stdout.
302 This is
303 useful to see how a partitioning scheme will work out for a specific disk.
304 .Ss Restoring a disk label from a file
305 To restore a disk label from a file, use the form
306 .Pp
307 .Nm
308 .Fl R
309 .Op Fl r
310 .Op Fl n
311 .Ar disk Ar protofile
312 .Pp
313 .Nm
314 is capable of restoring a disk label that was previously saved in a file
315 in ASCII format.
316 The prototype file used to create the label should be in the same format
317 as that produced when reading or editing a label.
318 Comments are delimited by
319 .Ql #
320 and newline.
321 As when writing a new label, any existing bootstrap code will be
322 clobbered if
323 .Fl r
324 is specified and will be unaffected otherwise.
325 See the boot options below for a
326 method of restoring the label and writing the bootstrap at the same time.
327 If
328 .Fl n
329 is used, no data will be written to the device, and instead the
330 disklabel that would have been written will be printed to stdout.
331 This is
332 useful to see how a partitioning scheme will work out for a specific disk.
333 .Ss Enabling and disabling writing to the disk label area
334 By default, it is not possible to write to the disk label area at the beginning
335 of a disk.
336 The disk driver arranges for
337 .Xr write 2
338 and similar system calls
339 to return
340 .Er EROFS
341 on any attempt to do so.
342 If you need
343 to write to this area (for example, to obliterate the label), use the form
344 .Pp
345 .Nm
346 .Fl W
347 .Ar disk
348 .Pp
349 To disallow writing to the label area after previously allowing it,
350 use the command
351 .Pp
352 .Nm
353 .Fl N
354 .Ar disk
355 .Ss Installing bootstraps
356 The final three forms of
357 .Nm
358 are used to install bootstrap code, which allows boot from a
359 .Xr HAMMER 5 ,
360 .Xr HAMMER2 5 ,
361 or
362 .Xr UFS 5
363 file system.
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 Ns / Ns Cm auto 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
397 .Bx
398 slice such as
399 .Ar da0s1 .
400 .Pp
401 .Nm
402 .Fl w
403 .Fl B
404 .Op Fl n
405 .Oo
406 .Fl b Ar boot1
407 .Fl s Ar boot2
408 .Oc
409 .Ar disk
410 .Op Ar disktype Ns / Ns Cm auto Op Ar packid
411 .Pp
412 This form corresponds to the
413 .Dq write label
414 command described above.
415 In addition to writing a new volume label, it also installs the bootstrap.
416 If run on the compatibility slice this command will create a
417 .Dq dangerously-dedicated
418 label.
419 This command is normally run on a
420 .Bx
421 slice rather than the compatibility slice.
422 If
423 .Fl n
424 is used, no data will be written to the device, and instead the
425 disklabel that would have been written will be printed to stdout.
426 .Pp
427 .Nm
428 .Fl R
429 .Fl B
430 .Op Fl n
431 .Oo
432 .Fl b Ar boot1
433 .Fl s Ar boot2
434 .Oc
435 .Ar disk Ar protofile
436 .Oo Ar disktype Ns / Ns Cm auto Oc
437 .Pp
438 This form corresponds to the
439 .Dq restore label
440 command described above.
441 In addition to restoring the volume label, it also installs the bootstrap.
442 If run on the compatibility slice this command will create a
443 .Dq dangerously-dedicated
444 label.
445 This command is normally run on a
446 .Bx
447 slice rather than the compatibility
448 slice.
449 .Pp
450 The bootstrap commands always access the disk directly,
451 so it is not necessary to specify the
452 .Fl r
453 flag.
454 If
455 .Fl n
456 is used, no data will be written to the device, and instead the
457 disklabel that would have been written will be printed to stdout.
458 .Pp
459 The bootstrap code is comprised of two boot programs.
460 Specify the name of the
461 boot programs to be installed in one of these ways:
462 .Bl -enum
463 .It
464 Specify the names explicitly with the
465 .Fl b
466 and
467 .Fl s
468 flags.
469 .Fl b
470 indicates the primary boot program and
471 .Fl s
472 the secondary boot program.
473 The boot programs are normally located in
474 .Pa /boot .
475 .It
476 If the
477 .Fl b
478 and
479 .Fl s
480 flags are not specified, but
481 .Ar disktype
482 was specified, the names of the programs are taken from the
483 .Dq b0
484 and
485 .Dq b1
486 parameters of the
487 .Xr disktab 5
488 entry for the disk if the disktab entry exists and includes those parameters.
489 .It
490 Otherwise, the default boot image names are used:
491 .Pa /boot/boot1_64
492 and
493 .Pa /boot/boot2_64
494 for the standard stage1 and stage2 boot images.
495 .El
496 .Ss Initializing/Formatting a bootable disk from scratch
497 To initialize a disk from scratch the following sequence is recommended.
498 Please note that this will wipe everything that was previously on the disk,
499 including any
500 .No non- Ns Dx
501 slices.
502 .Bl -enum
503 .It
504 Use
505 .Xr gpt 8
506 or
507 .Xr fdisk 8
508 to initialize the hard disk, and create a GPT or MBR slice table,
509 referred to as the
510 .Dq "partition table"
511 in
512 .Tn DOS .
513 .It
514 Use
515 .Nm
516 or
517 .Xr disklabel32 8
518 to define partitions on
519 .Dx
520 slices created in the previous step.
521 .It
522 Finally use
523 .Xr newfs_hammer 8 ,
524 .Xr newfs_hammer2 8 ,
525 or
526 .Xr newfs 8
527 to create file systems on new partitions.
528 .El
529 .Pp
530 A typical partitioning scheme would be to have an
531 .Ql a
532 partition of approximately 1 GB for
533 .Pa /boot
534 to hold the current, old (and backup) kernels and modules, a
535 .Ql b
536 partition for swap (suggested to be at least the same size as the
537 physical memory),
538 and finally a
539 .Ql d
540 partition for the root file system (usually all remaining space).
541 Your mileage may vary.
542 .Pp
543 .Dl "gpt create da0"
544 .Dl "gpt add da0"
545 .Dl "disklabel64 -B -r -w da0s0"
546 .Dl "disklabel64 -e da0s0"
547 .Sh ALIGNMENT
548 When a virgin disklabel64 is laid down a
549 .Dx 2.5
550 or later kernel will align the partition start offset relative to the
551 physical drive instead of relative to the slice start.
552 This overcomes the issue of fdisk creating a badly aligned slice by default.
553 The kernel will use a 1MiB (1024 * 1024 byte) alignment.
554 The purpose of this alignment is to match swap and cluster operations
555 against the physical block size of the underlying device.
556 .Pp
557 Even though nearly all devices still report a logical sector size of 512,
558 newer hard drives are starting to use larger physical sector sizes
559 and, in particular, solid state drives (SSDs) use a physical block size
560 of 64K (SLC) or 128K (MLC).  We choose a 1 megabyte alignment to cover our
561 bases down the road.  64-bit disklabels are not designed to be put on
562 ultra-tiny storage devices.
563 .Pp
564 It is worth noting that aligning cluster operations is particularly
565 important for SSDs and doubly so when
566 .Xr swapcache 8
567 is used with a SSD.
568 Swapcache is able to use large bulk writes which greatly reduces the degree
569 of write magnification on SSD media and it is possible to get upwards of
570 5x more endurance out of the device than the vendor spec sheet indicates.
571 .Sh FILES
572 .Bl -tag -width ".Pa /boot/boot2_64" -compact
573 .It Pa /boot/boot1_64
574 Default stage1 boot image.
575 .It Pa /boot/boot2_64
576 Default stage2 boot image.
577 .It Pa /etc/disktab
578 Disk description file.
579 .El
580 .Sh SAVED FILE FORMAT
581 The
582 .Nm
583 utility uses an
584 .Tn ASCII
585 version of the label when examining, editing, or restoring a disk label.
586 An example shows as below:
587 .Bd -literal -offset 4n
588 # /dev/ad0s1:
589 #
590 # Calculated informational fields for the slice:
591 #
592 # boot space:    1012224 bytes
593 # data space:  156286976 blocks # 152624.00 MB (160037863424 bytes)
594 #
595 # NOTE: The partition data base and stop are physically
596 #       aligned instead of slice-relative aligned.
597 #
598 # All byte equivalent offsets must be aligned.
599 #
600 diskid: 5dc53a64-c5e5-11e7-8aec-011d0988acd3
601 label:
602 boot2 data base:      0x000000001000
603 partitions data base: 0x0000000f8200
604 partitions data stop: 0x0025430f8200
605 backup label:         0x002543157200
606 total size:           0x002543158200    # 152625.34 MB
607 alignment: 4096
608 display block size: 1024        # for partition display and edit only
609
610 16 partitions:
611 #          size     offset    fstype   fsuuid
612   a:    1048576          0    4.2BSD    #    1024.000MB
613   b:   16777216    1048576      swap    #   16384.000MB
614   d:  138461184   17825792    HAMMER    #  135216.000MB
615   a-stor_uuid: 7f1ff0ee-c5ec-11e7-8aec-011d0988acd3
616   b-stor_uuid: 7f1ff0fc-c5ec-11e7-8aec-011d0988acd3
617   d-stor_uuid: 7f1ff108-c5ec-11e7-8aec-011d0988acd3
618 .Ed
619 .Pp
620 Lines starting with a
621 .Ql #
622 mark are comments.
623 The specifications which can be changed are:
624 .Bl -inset
625 .It Ar label
626 is an optional label, set by the
627 .Ar packid
628 option when writing a label.
629 .It Ar "the partition table"
630 is the
631 .Ux
632 partition table, not the
633 .Tn DOS
634 partition table described in
635 .Xr fdisk 8 .
636 .El
637 .Pp
638 The partition table can have up to 16 entries.
639 It contains the following information:
640 .Bl -tag -width indent
641 .It Ar #
642 The partition identifier is a single letter in the range
643 .Ql a
644 to
645 .Ql p .
646 .It Ar size
647 The size of the partition in sectors,
648 .Cm K
649 (kilobytes - 1024),
650 .Cm M
651 (megabytes - 1024*1024),
652 .Cm G
653 (gigabytes - 1024*1024*1024),
654 .Cm T
655 (terabytes - 1024*1024*1024*1024),
656 .Cm %
657 (percentage of free space
658 .Em after
659 removing any fixed-size partitions),
660 .Cm *
661 (all remaining free space
662 .Em after
663 fixed-size and percentage partitions).
664 Lowercase versions of
665 .Cm K , M , G ,
666 and
667 .Cm T
668 are allowed.
669 Size and type should be specified without any spaces between them.
670 .Pp
671 Example: 2097152, 1G, 1024M and 1048576K are all the same size
672 (assuming 512-byte sectors).
673 .It Ar offset
674 The offset of the start of the partition from the beginning of the
675 drive in sectors, or
676 .Cm *
677 to have
678 .Nm
679 calculate the correct offset to use (the end of the previous partition plus
680 one.
681 .It Ar fstype
682 The name of the filesystem type for the partition (case insensitive).
683 For
684 .Xr UFS 5
685 file systems, use type
686 .Cm 4.2BSD .
687 For
688 .Xr HAMMER 5
689 file systems, use type
690 .Cm HAMMER .
691 For
692 .Xr hammer2 8
693 file systems, use type
694 .Cm HAMMER2 .
695 For
696 .Xr ccd 4
697 partitions, use type
698 .Cm ccd .
699 For Vinum drives, use type
700 .Cm vinum .
701 Other common types are
702 .Cm swap
703 and
704 .Cm unused .
705 The
706 .Nm
707 utility
708 also knows about a number of other partition types,
709 none of which are in current use.
710 (See
711 .Dv fstypenames
712 in
713 .In sys/dtype.h
714 for more details).
715 .El
716 .Pp
717 The remainder of the line is a comment and shows the size of
718 the partition in MB.
719 .Sh EXAMPLES
720 .Dl "disklabel64 da0s1"
721 .Pp
722 Display the in-core label for the first slice of the
723 .Pa da0
724 disk, as obtained via
725 .Pa /dev/da0s1 .
726 (If the disk is
727 .Dq dangerously-dedicated ,
728 the compatibility slice name should be specified, such as
729 .Pa da0s0 . )
730 .Pp
731 .Dl "disklabel64 da0s1 > savedlabel"
732 .Pp
733 Save the in-core label for
734 .Pa da0s1
735 into the file
736 .Pa savedlabel .
737 This file can be used with the
738 .Fl R
739 option to restore the label at a later date.
740 .Pp
741 .Dl "disklabel64 -e -r da0s1"
742 .Pp
743 Read the on-disk label for
744 .Pa da0s1 ,
745 edit it, and reinstall in-core as well as on-disk.
746 Existing bootstrap code is unaffected.
747 .Pp
748 .Dl "disklabel64 -e -r -n da0s1"
749 .Pp
750 Read the on-disk label for
751 .Pa da0s1 ,
752 edit it, and display what the new label would be.
753 It does
754 .Em not
755 install the new label either in-core or on-disk.
756 .Pp
757 .Dl "disklabel64 -r -w da0s1"
758 .Pp
759 Try to auto-detect the required information from
760 .Pa da0s1 ,
761 and write a new label to the disk.
762 Use another
763 .Nm Fl e
764 command to edit the partitioning information.
765 .Pp
766 .Dl "disklabel64 -R da0s1 savedlabel"
767 .Pp
768 Restore the on-disk and in-core label for
769 .Pa da0s1
770 from information in
771 .Pa savedlabel .
772 Existing bootstrap code is unaffected.
773 .Pp
774 .Dl "disklabel64 -R -n da0s1 label_layout"
775 .Pp
776 Display what the label would be for
777 .Pa da0s1
778 using the partition layout in
779 .Pa label_layout .
780 This is useful for determining how much space would be allotted for various
781 partitions with a labelling scheme using
782 .Cm % Ns -based
783 or
784 .Cm *
785 partition sizes.
786 .Pp
787 .Dl "disklabel64 -B da0s1"
788 .Pp
789 Install a new bootstrap on
790 .Pa da0s1 .
791 The boot code comes from
792 .Pa /boot/boot1_64
793 and possibly
794 .Pa /boot/boot2_64 .
795 On-disk and in-core labels are unchanged.
796 .Pp
797 .Dl "disklabel64 -w -B /dev/da0s1 -b newboot1 -s newboot2"
798 .Pp
799 Install a new label and bootstrap, with bootstrap code comes from the files
800 .Pa newboot1
801 and
802 .Pa newboot2 .
803 .Pp
804 .Dl "dd if=/dev/zero of=/dev/da0 bs=512 count=32"
805 .Dl "fdisk -BI da0"
806 .Dl "dd if=/dev/zero of=/dev/da0s1 bs=512 count=32"
807 .Dl "disklabel64 -w -B da0s1"
808 .Dl "disklabel64 -e da0s1"
809 .Pp
810 Completely wipe any prior information on the disk, creating a new bootable
811 disk with a DOS partition table containing one
812 .Dq whole-disk
813 slice.
814 Then
815 initialize the slice, then edit it to your needs.
816 The
817 .Pa dd
818 commands are optional, but may be necessary for some BIOSes to properly
819 recognize the disk.
820 .Pp
821 .Dl "disklabel64 -W da0s1"
822 .Dl "dd if=/dev/zero of=/dev/da0s1 bs=512 count=32"
823 .Dl "disklabel32 -r -w da0s1"
824 .Dl "disklabel32 -N da0s1"
825 .Pp
826 Completely wipe any prior information on the slice,
827 and install the old 32-bit label.
828 The wiping is needed because both
829 .Nm disklabel32
830 and
831 .Nm ,
832 as a safety measure,
833 won't do any operations if label with other format is already installed.
834 .Pp
835 This is an example disklabel that uses some of the new partition size types
836 such as
837 .Cm % , M , G , T ,
838 and
839 .Cm * ,
840 which could be used as a source file for:
841 .Pp
842 .Dl "disklabel64 -R ad0s1 new_label_file"
843 .Bd -literal -offset 4n
844 # /dev/ad0s1:
845 #
846 # Calculated informational fields for the slice:
847 #
848 # boot space:    1012224 bytes
849 # data space:  156286976 blocks # 152624.00 MB (160037863424 bytes)
850 #
851 # NOTE: The partition data base and stop are physically
852 #       aligned instead of slice-relative aligned.
853 #
854 # All byte equivalent offsets must be aligned.
855 #
856 diskid: 5dc53a64-c5e5-11e7-8aec-011d0988acd3
857 label:
858 boot2 data base:      0x000000001000
859 partitions data base: 0x0000000f8200
860 partitions data stop: 0x0025430f8200
861 backup label:         0x002543157200
862 total size:           0x002543158200    # 152625.34 MB
863 alignment: 4096
864 display block size: 1024        # for partition display and edit only
865
866 16 partitions:
867 #          size     offset    fstype   fsuuid
868   a:      1024M          0    4.2BSD
869   b:         4G          *      swap
870   d:         2G          *    4.2BSD
871   e:      2048M          *    4.2BSD
872   f:         4G          *    4.2BSD
873   g:         4G          *    4.2BSD
874   h:        50G          *    HAMMER
875   i:          *          *    HAMMER2
876   j:         5g          *       ccd
877   k:      5120m          *     vinum
878 .Ed
879 .Sh DIAGNOSTICS
880 The kernel device drivers will not allow the size of a disk partition
881 to be decreased or the offset of a partition to be changed while it is open.
882 Some device drivers create a label containing only a single large partition
883 if a disk is unlabeled; thus, the label must be written to the
884 .Ql a
885 partition of the disk while it is open.
886 This sometimes requires the desired
887 label to be set in two steps, the first one creating at least one other
888 partition, and the second setting the label on the new partition while
889 shrinking the
890 .Ql a
891 partition.
892 .Sh SEE ALSO
893 .Xr dd 1 ,
894 .Xr uuid 3 ,
895 .Xr ccd 4 ,
896 .Xr disklabel64 5 ,
897 .Xr disktab 5 ,
898 .Xr boot0cfg 8 ,
899 .Xr diskinfo 8 ,
900 .Xr disklabel32 8 ,
901 .Xr fdisk 8 ,
902 .Xr gpt 8 ,
903 .Xr hammer2 8 ,
904 .Xr newfs 8 ,
905 .Xr newfs_hammer 8 ,
906 .Xr newfs_hammer2 8 ,
907 .Xr vinum 8
908 .Sh BUGS
909 The
910 .Nm
911 utility
912 does not perform all possible error checking.
913 Warning
914 .Em is
915 given if partitions
916 overlap; if an absolute offset does not match the expected offset; if a
917 partition runs past the end of the device; and a number of other errors; but
918 no warning is given if space remains unused.
919 .Pp
920 The
921 .Xr disktab 5
922 support is not implemented.