|
NAMEgptzfsboot —
GPT bootcode for ZFS on BIOS-based computers
DESCRIPTIONgptzfsboot is used on BIOS-based computers to boot from
a filesystem in a ZFS pool. gptzfsboot is installed in
a freebsd-boot partition of a GPT-partitioned disk
with
gpart(8).
IMPLEMENTATION NOTESThe GPT standard allows a variable number of partitions, butgptzfsboot only boots from tables with 128 partitions
or less.
BOOTINGgptzfsboot tries to find all ZFS pools that are composed
of BIOS-visible hard disks or partitions on them.
gptzfsboot looks for ZFS device labels on all visible
disks and in discovered supported partitions for all supported partition
scheme types. The search starts with the disk from which
gptzfsboot itself was loaded. Other disks are probed
in BIOS defined order. After a disk is probed and
gptzfsboot determines that the whole disk is not a ZFS
pool member, the individual partitions are probed in their partition table
order. Currently GPT and MBR partition schemes are supported. With the GPT
scheme, only partitions of type freebsd-zfs are
probed. The first pool seen during probing is used as a default boot pool.
The filesystem specified by the The ZFS GUIDs of the first successfully probed device and the
first detected pool are made available to
loader(8)
in the USAGENormallygptzfsboot will boot in fully automatic mode.
However, like
boot(8), it
is possible to interrupt the automatic boot process and interact with
gptzfsboot through a prompt.
gptzfsboot accepts all the options that
boot(8)
supports.
The filesystem specification and the path to loader(8) are different from boot(8). The format is [zfs:pool/filesystem:][/path/to/loader] Both the filesystem and the path can be specified. If only a path is specified, then the default filesystem is used. If only a pool and filesystem are specified, then /boot/loader is used as a path. Additionally, the The configured or automatically determined ZFS boot filesystem is
stored in the
loader(8)
FILES
EXAMPLESgptzfsboot is typically installed in combination with a
“protective MBR” (see
gpart(8)).
To install gptzfsboot on the
ada0 drive:
gpart bootcode -b /boot/pmbr -p /boot/gptzfsboot -i 1 ada0
gpart bootcode -p /boot/gptzfsboot -i 1 ada0 SEE ALSOboot.config(5), boot(8), gpart(8), loader(8), zpool(8)HISTORYgptzfsboot appeared in FreeBSD 7.3.
AUTHORSThis manual page was written by Andriy Gapon ⟨avg@FreeBSD.org⟩.BUGSgptzfsboot looks for ZFS meta-data only in MBR
partitions (known on FreeBSD as slices). It does not look into BSD
disklabel(8)
partitions that are traditionally called partitions. If a disklabel partition
happens to be placed so that ZFS meta-data can be found at the fixed offsets
relative to a slice, then gptzfsboot will recognize
the partition as a part of a ZFS pool, but this is not guaranteed to happen.
Visit the GSP FreeBSD Man Page Interface. |