Lines Matching +full:partition +full:-

40 .Op Fl -capacity Ar capacity
46 .Op Fl s Ar scheme Op Fl p Ar partition ...
48 .Fl -formats | Fl -schemes | Fl -version
52 utility creates a disk image from the raw partition contents specified with
54 .Ar partition
69 The disk image can be made bootable by specifying the scheme-specific boot
74 with a boot partition.
75 The contents of such a boot partition is provided like any other partition
120 An empty partition table can be written to the disk when specifying a
136 .Fl -capacity
158 option marks a partition as active, if the partitioning
165 will only mark the first partition as active when boot code is
169 option to override the active partition.
171 partition's
185 .Fl -version
188 .Fl -formats
191 .Fl -schemes
193 Both the format and scheme lists a space-separated lists for easy handling
262 VHDX is the required format for the 2nd generation Hyper-V VMs.
284 For example, the GUID Partition Table (GPT) scheme has a header in the last
291 .Sh PARTITION SPECIFICATION
294 may be used multiple times to specify a list of created partition entries.
295 A specification that is a single dash indicates an unused partition entry.
296 Otherwise, a partition specification has the following format:
297 .Bd -literal -offset indent
300 .Bl -tag -width indent
302 the partition type alias (f.e.: freebsd-swap)
304 and a label for partitioning schemes that feature partition labels
310 .Bl -tag -width indent
312 contents holds the size of an empty partition,
319 .It Cm '-'
321 of the partition.
322 Multi-word strings should be quoted according to the shell rules.
325 the specification of a partition's contents
328 .Bl -tag -width "TMPDIR" -compact
337 and also containing a swap partition, run the
340 .Dl % mkimg -s gpt -b /boot/pmbr -p freebsd-boot:=/boot/gptboot \
341 -p freebsd-ufs:=root-file-system.ufs -p freebsd-swap::1G \
355 The output of the first will be fed as the contents of a partition to the
358 .Dl % mkimg -s bsd -b /boot/boot -p freebsd-ufs:=root-file-system.ufs \
359 -p freebsd-swap::1G -o /tmp/bsd.img
360 .Dl % mkimg -s mbr -b /boot/mbr -p freebsd:=/tmp/bsd.img -o mbr-bsd.img
369 .Dl % mkimg -s mbr -b /boot/mbr -p freebsd:-'mkimg -s bsd -b /boot/boot \
370 -p freebsd-ufs:=root-file-system.ufs -p freebsd-swap::1G' -o mbr-bsd.img
376 For example, to create an image that is compatible with partition layouts
379 the 'd' partition often needs to be skipped.
380 This is accomplished by inserting an unused partition after the first 2
381 partition specifications.
383 skip the 'c' partition by virtue of it referring to the entire disk.
387 .Dl % mkimg -s bsd -b /boot/boot -p freebsd-ufs:=root-file-system.ufs \
388 -p freebsd-swap::20M -p- -p- -p- -p- -p freebsd-ufs:=usr-file-system.ufs \
391 For partitioning schemes that feature partition labels, the
394 In the following example the file system partition is labeled as 'backup':
395 .Dl % mkimg -s gpt -p freebsd-ufs/backup:=file-system.ufs -o gpt.img