1 .\" Copyright (c) 2002 Marcel Moolenaar
2 .\" All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\" notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\" notice, this list of conditions and the following disclaimer in the
12 .\" documentation and/or other materials provided with the distribution.
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 .\" $FreeBSD: src/sbin/gpt/gpt.8,v 1.17 2006/06/22 22:22:32 marcel Exp $
26 .\" $DragonFly: src/sbin/gpt/gpt.8,v 1.4 2007/12/23 15:31:28 swildner Exp $
33 .Nd "GUID partition table maintenance utility"
36 .Op Ar general_options
38 .Op Ar command_options
43 utility provides the necessary functionality to manipulate GUID partition
44 tables (GPTs), but see
46 below for how and where functionality is missing.
47 The basic usage model of the
49 tool follows that of the
52 The general options are described in the following paragraph.
53 The remaining paragraphs describe the individual commands with their options.
54 Here we conclude by mentioning that a
56 is either a special file
57 corresponding to a disk-like device or a regular file.
58 The command is applied to each
60 listed on the command line.
62 The general options allow the user to change default settings or otherwise
63 change the behaviour that is applicable to all commands.
64 Not all commands use all default settings, so some general options may not
65 have an effect on all commands.
69 option allows the user to change the number of partitions the GPT can
71 This is used whenever a new GPT is created.
74 utility will create space for 128 partitions (or 32 sectors of 512 bytes).
80 utility to open the device for reading only.
81 Currently this option is primarily useful for the
83 command, but the intent
84 is to use it to implement dry-run behaviour.
88 option controls the verbosity level.
89 The level increases with every occurrence of this option.
90 There is no formalized definition of the different levels yet.
92 .Bl -tag -width indent
105 command allows the user to add a new partition to an existing table.
106 By default, it will create a UFS partition covering the first available block
107 of an unused disk space.
108 The command-specific options can be used to control this behaviour.
112 option allows the user to specify the starting (beginning) sector number of
114 The minimum sector number is 1, but has to fall inside an unused region of
115 disk space that is covered by the GPT.
119 option allows the user to specify which (free) entry in the GPT table is to
120 be used for the new partition.
121 By default, the first free entry is selected.
122 Entries start at index 0 representing partition 0 of the GPT.
126 option allows the user to specify the size of the partition in sectors.
127 The minimum size is 1.
131 option allows the user to specify the partition type.
132 The type is given as an UUID, but
135 .Cm efi , swap , ufs , hfs , linux , dfly ,
138 as aliases for the most commonly used partition types.
139 You may also specify any symbolic name in the system uuids file.
141 .It Nm Ic create Oo Fl fp Oc Ar device ...
144 command allows the user to create a new (empty) GPT.
145 By default, one cannot create a GPT when the device contains a MBR,
146 however this can be overridden with the
151 option is specified, an existing MBR is destroyed and any partitions
152 described by the MBR are lost.
158 to create only the primary table and not the backup table.
159 This option is only useful for debugging and should not be used otherwise.
160 .\" ==== destroy ====
161 .It Nm Ic destroy Oo Fl r Oc Ar device ...
164 command allows the user to destroy an existing, possibly not empty GPT.
170 to destroy the table in a way that it can be recovered.
176 .Aq Fl f Ar file | Fl l Ar label
186 .Aq Fl f Ar file | Fl l Ar label
191 command allows the user to label any partitions that match the selection.
192 At least one of the following selection options must be specified.
196 option specifies that all partitions should be labeled.
197 It is mutually exclusive with all other selection options.
201 option selects the partition that starts at the given block number.
205 option selects the partition with the given partition number.
206 Partition numbers start at 0.
210 option selects all partitions that have the given size.
211 This can cause multiple partitions to be removed.
215 option selects all partitions that have the given type.
216 The type is given as an UUID or by the aliases that the
219 This can cause multiple partitions to be removed.
225 options specify the new label to be assigned to the selected partitions.
228 option is used to read the label from the specified file.
229 Only the first line is read from the file and the trailing newline
230 character is stripped.
231 If the file name is the dash or minus sign
233 the label is read from
237 option is used to specify the label in the command line.
238 The label is assumed to be encoded in UTF-8.
239 .\" ==== migrate ====
240 .It Nm Ic migrate Oo Fl fs Oc Ar device ...
243 command allows the user to migrate an MBR-based disk partitioning into a
244 GPT-based partitioning.
245 By default, the MBR is not migrated when it contains partitions of an unknown
247 This can be overridden with the
252 option will cause unknown partitions to be ignored and any data in it
257 option prevents migrating
259 disk labels into GPT partitions by creating
260 the GPT equivalent of a slice.
262 .It Nm Ic remove Oo Fl a Oc Ar device ...
274 command allows the user to remove any and all partitions that match the
276 It uses the same selection options as the
279 See above for a description of these options.
280 Partitions are removed by clearing the partition type.
281 No other information is changed.
283 .It Nm Ic show Oo Fl lu Oc Ar device ...
286 command displays the current partitioning on the listed devices and gives
287 an overall view of the disk contents.
290 option the GPT partition label will be displayed instead of the GPT partition
292 The option has no effect on non-GPT partitions.
295 option the GPT partition type is displayed as an UUID instead of in a
299 option takes precedence over the
315 The development of the
317 utility is still work in progress.
318 Many necessary features are missing or partially implemented.
319 In practice this means that the manual page, supposed to describe these
320 features, is farther removed from being complete or useful.
321 As such, missing functionality is not even documented as missing.
322 However, it is believed that the currently present functionality is reliable
323 and stable enough that this tool can be used without bullet-proof footware if
324 one thinks one does not make mistakes.
326 It is expected that the basic usage model does not change, but it is
327 possible that future versions will not be compatible in the strictest sense
331 option may be changed to a command option rather than a generic option.
332 There are only two commands that use it so there is a chance that the natural
333 tendency for people is to use it as a command option.
334 Also, options primarily intended for diagnostic or debug purposes may be
335 removed in future versions.
337 Another possibility is that the current usage model is accompanied by
338 other interfaces to make the tool usable as a back-end.
339 This all depends on demand and thus feedback.