~ubuntu-branches/ubuntu/vivid/parted/vivid

« back to all changes in this revision

Viewing changes to doc/parted.info

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-07-30 13:16:15 UTC
  • mfrom: (7.2.34 sid)
  • Revision ID: package-import@ubuntu.com-20140730131615-6uy87mosal6722s6
Tags: 3.2-1
* New upstream release.
* Drop currently-unused build-dependency on po4a (thanks, Johannes
  Schauer).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
This is parted.info, produced by makeinfo version 4.13 from parted.texi.
2
 
 
3
 
This file documents the use of GNU Parted, a program for creating and
4
 
manipulating partition tables.
5
 
 
6
 
  Copyright (C) 1999-2012 Free Software Foundation, Inc.
 
1
This is parted.info, produced by makeinfo version 5.2 from parted.texi.
 
2
 
 
3
Copyright (C) 1999-2014 Free Software Foundation, Inc.
7
4
 
8
5
  Permission is granted to copy, distribute and/or modify this document
9
6
under the terms of the GNU Free Documentation License, Version 1.3 or
11
8
Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
12
9
Texts.  A copy of the license is included in the section entitled "GNU
13
10
Free Documentation License".
14
 
 
15
11
INFO-DIR-SECTION System administration
16
12
START-INFO-DIR-ENTRY
17
13
* parted: (parted).                         GNU partitioning software
18
14
END-INFO-DIR-ENTRY
19
15
 
 
16
  This file documents the use of GNU Parted, a program for creating and
 
17
manipulating partition tables.
 
18
 
20
19
 
21
20
File: parted.info,  Node: Top,  Next: Introduction,  Up: (dir)
22
21
 
26
25
This file documents the use of GNU Parted, a program for creating and
27
26
manipulating partition tables.
28
27
 
29
 
  This document applies roughly to version *3.1* of GNU Parted.
 
28
  This document applies roughly to version *3.2* of GNU Parted.
30
29
 
31
30
  The original version was written by Andrew Clausen in text format.
32
31
Richard M. Kreuter translated it into Texinfo format in 2002, to be
68
67
 
69
68
  GNU Parted was designed to minimize the chance of data loss.  For
70
69
example, it was designed to avoid data loss during interruptions (like
71
 
power failure) and performs many safety checks.  However, there could
72
 
be bugs in GNU Parted, so you should back up your important files before
 
70
power failure) and performs many safety checks.  However, there could be
 
71
bugs in GNU Parted, so you should back up your important files before
73
72
running Parted.
74
73
 
75
 
  The GNU Parted homepage is `http://www.gnu.org/software/parted'.  The
 
74
  The GNU Parted homepage is <http://www.gnu.org/software/parted>.  The
76
75
library and frontend themselves can be downloaded from
77
 
`ftp://ftp.gnu.org/gnu/parted'.  You can also find a listing of mailing
 
76
<ftp://ftp.gnu.org/gnu/parted>.  You can also find a listing of mailing
78
77
lists, notes for contributing and more useful information on the web
79
78
site.
80
79
 
81
80
  Please send bug reports to <bug-parted@gnu.org>.  When sending bug
82
81
reports, please include the version of GNU Parted.  Please include the
83
 
output from these commands (for disk `/dev/hda'):
 
82
output from these commands (for disk '/dev/hda'):
84
83
 
85
84
     # parted /dev/hda print unit s print unit chs print
86
85
 
105
104
   * libuuid, part of the e2fsprogs package.  If you don't have this,
106
105
     you can get it from:
107
106
 
108
 
        `http://web.mit.edu/tytso/www/linux/e2fsprogs.html'
 
107
     <http://web.mit.edu/tytso/www/linux/e2fsprogs.html>
109
108
 
110
109
     If you want to compile Parted and e2fsprogs, note that you will
111
 
     need to `make install' and `make install-libs' e2fsprogs.
 
110
     need to 'make install' and 'make install-libs' e2fsprogs.
112
111
 
113
112
   * GNU Readline (optional), available from
114
113
 
115
 
        `ftp://ftp.gnu.org/gnu/readline'
 
114
     <ftp://ftp.gnu.org/gnu/readline>
116
115
 
117
116
     If you are compiling Parted, and you don't have readline, you can
118
 
     disable Parted's readline support with the `--disable-readline'
119
 
     option for `configure'.
 
117
     disable Parted's readline support with the '--disable-readline'
 
118
     option for 'configure'.
120
119
 
121
120
   * GNU gettext (or compatible software) for compilation, if
122
121
     internationalisation support is desired.
123
122
 
124
 
        `ftp://ftp.gnu.org/gnu/gettext'
 
123
     <ftp://ftp.gnu.org/gnu/gettext>
125
124
 
126
125
   * libreiserfs, if you want reiserfs support:
127
126
 
128
 
        `http://reiserfs.osdn.org.ua'
 
127
     <http://reiserfs.osdn.org.ua>
129
128
 
130
129
     Note that parted will automatically detect libreiserfs at runtime,
131
130
     and enable reiserfs support.  libreiserfs is new, and hasn't been
132
131
     widely tested yet.
133
132
 
134
 
 
135
133
 
136
134
File: parted.info,  Node: Supported Platforms,  Next: License,  Prev: Software Required,  Up: Introduction
137
135
 
174
172
     $ ./configure
175
173
     $ make
176
174
 
177
 
  However, there are a few options for `configure':
 
175
  However, there are a few options for 'configure':
178
176
 
179
 
`--without-readline'
 
177
'--without-readline'
180
178
     turns off use of readline.  This is useful for making rescue disks,
181
179
     etc., where few libraries are available.
182
180
 
183
 
`--disable-debug'
 
181
'--disable-debug'
184
182
     don't include assertions
185
183
 
186
 
`--disable-dynamic-loading'
 
184
'--disable-dynamic-loading'
187
185
     disables dynamic loading of some libraries (only libreiserfs for
188
186
     now, although we hope to expand this).  Dynamic loading is useful
189
 
     because it allows you to reuse libparted shared libraries even
190
 
     when you don't know if some libraries will be available.  It has a
191
 
     small overhead (mainly linking with libdl), so it may be useful to
 
187
     because it allows you to reuse libparted shared libraries even when
 
188
     you don't know if some libraries will be available.  It has a small
 
189
     overhead (mainly linking with libdl), so it may be useful to
192
190
     disable it on bootdisks if you don't need the flexibility.
193
191
 
194
 
`--disable-nls'
 
192
'--disable-nls'
195
193
     turns off native language support.  This is useful for use with old
196
194
     versions of glibc, or a trimmed down version of glibc suitable for
197
195
     rescue disks.
198
196
 
199
 
`--disable-shared'
 
197
'--disable-shared'
200
198
     turns off shared libraries.  This may be necessary for use with old
201
199
     versions of GNU libc, if you get a compile error about a "spilled
202
200
     register".  Also useful for boot/rescue disks.
203
201
 
204
 
`--enable-discover-only'
 
202
'--enable-discover-only'
205
203
     support only reading/probing (reduces size considerably)
206
204
 
207
 
`--enable-mtrace'
 
205
'--enable-mtrace'
208
206
     enable malloc() debugging
209
207
 
210
 
`--enable-read-only'
 
208
'--enable-read-only'
211
209
     disable writing (for debugging)
212
210
 
213
 
 
214
211
1.5.1 Introduction
215
212
------------------
216
213
 
217
214
If you want to run GNU Parted on a machine without GNU/Linux installed,
218
215
or you want to modify a root or boot partition, use GParted Live:
219
 
`http://gparted.sourceforge.net/livecd.php'.
 
216
<http://gparted.sourceforge.net/livecd.php>.
220
217
 
221
218
 
222
219
File: parted.info,  Node: Using Parted,  Next: Related information,  Prev: Introduction,  Up: Top
262
259
  In command line mode, this is followed by one or more commands.  For
263
260
example:
264
261
 
265
 
     # parted /dev/sda mklabel gpt mkpart P1 ext3 1MiB 8MiB
 
262
     # parted /dev/sda mklabel gpt mkpart P1 ext3 1MiB 8MiB 
266
263
 
267
 
Options (like `--help') can only be specified on the command line.
 
264
Options (like '--help') can only be specified on the command line.
268
265
 
269
266
  In interactive mode, commands are entered one at a time at a prompt,
270
267
and modify the disk immediately.  For example:
271
268
 
272
269
     (parted) mklabel gpt
273
 
     (parted) mkpart P1 ext3 1MiB 8MiB
 
270
     (parted) mkpart P1 ext3 1MiB 8MiB 
274
271
 
275
272
Unambiguous abbreviations are allowed.  For example, you can type "p"
276
273
instead of "print", and "u" instead of "units".  Commands can be typed
282
279
decimals.  The suffix selects the unit, which may be one of those
283
280
described in *note unit::, except CHS and compact.  If no suffix is
284
281
given, then the default unit is assumed.  Negative numbers count back
285
 
from the end of the disk, with "-1s" indicating the sector at the end
286
 
of the disk.  Parted will compute sensible ranges for the locations you
287
 
specify (e.g. a range of +/- 500 MB when you specify the location in
 
282
from the end of the disk, with "-1s" indicating the sector at the end of
 
283
the disk.  Parted will compute sensible ranges for the locations you
 
284
specify (e.g.  a range of +/- 500 MB when you specify the location in
288
285
"G"). Use the sector unit "s" to specify exact locations.  With
289
286
parted-2.4 and newer, IEC binary units like "MiB", "GiB", "TiB", etc.,
290
 
specify exact locations as well.  See *Note IEC binary units::.
 
287
specify exact locations as well.  *Note IEC binary units::.
291
288
 
292
 
  If you don't give a parameter to a command, Parted will prompt you
293
 
for it.  For example:
 
289
  If you don't give a parameter to a command, Parted will prompt you for
 
290
it.  For example:
294
291
 
295
292
     (parted) mklabel
296
293
     New disk label type? gpt
315
312
     # parted [OPTION] DEVICE [COMMAND [ARGUMENT]]
316
313
 
317
314
  Available options and commands follow.  For detailed explanations of
318
 
the use of Parted commands, see *note Command explanations::. Options
 
315
the use of Parted commands, see *note Command explanations::.  Options
319
316
begin with a hyphen, commands do not:
320
317
 
321
318
  Options:
322
319
 
323
 
`-h'
324
 
`--help'
 
320
'-h'
 
321
'--help'
325
322
     display a help message
326
323
 
327
 
`-s'
328
 
`--script'
 
324
'-s'
 
325
'--script'
329
326
     never prompt the user
330
327
 
331
 
`-a alignment-type'
332
 
`--align alignment-type'
 
328
'-a alignment-type'
 
329
'--align alignment-type'
333
330
     Set alignment for newly created partitions, valid alignment types
334
331
     are: none, cylinder, minimal and optimal.
335
332
 
336
 
`-v'
337
 
`--version'
 
333
'-v'
 
334
'--version'
338
335
     display the version
339
336
 
340
337
 
356
353
* print::
357
354
* quit::
358
355
* rescue::
 
356
* resizepart::
359
357
* rm::
360
358
* select::
361
359
* set::
371
369
-----------------
372
370
 
373
371
 -- Command: align-check ALIGN-TYPE N
 
372
 
374
373
     Determine whether the starting sector of partition N meets the
375
 
     disk's selected alignment criteria.  ALIGN-TYPE must be `minimal',
376
 
     `optimal' or an abbreviation.  When in script mode, if the
377
 
     partition does not meet the alignment requirement, exit with
378
 
     status 1;  otherwise (including on older kernels for which
379
 
     alignment data is not available), continue processing any
380
 
     remaining commands.  Without `--script', print either `N aligned'
381
 
     or `N not aligned'.
 
374
     disk's selected alignment criteria.  ALIGN-TYPE must be 'minimal',
 
375
     'optimal' or an abbreviation.  When in script mode, if the
 
376
     partition does not meet the alignment requirement, exit with status
 
377
     1; otherwise (including on older kernels for which alignment data
 
378
     is not available), continue processing any remaining commands.
 
379
     Without '--script', print either 'N aligned' or 'N not aligned'.
382
380
 
383
381
     Example:
384
382
 
385
383
          (parted) align-check minimal 1
386
384
          1 aligned
387
385
 
388
 
 
389
386
 
390
387
File: parted.info,  Node: disk_set,  Next: help,  Prev: align-check,  Up: Command explanations
391
388
 
393
390
--------------
394
391
 
395
392
 -- Command: disk_set FLAG STATE
 
393
 
396
394
     Changes a flag on the disk.  A flag can be either "on" or "off".
397
395
     Some or all of these flags will be available, depending on what
398
396
     disk label you are using:
399
397
 
400
 
    `pmbr_boot'
 
398
     'pmbr_boot'
401
399
          (GPT) - this flag enables the boot flag on the GPT's
402
400
          protective MBR partition.
403
401
 
404
 
 
405
402
     The disk's flags are displayed by the print command on the "Disk
406
403
     Flags:" line.  They are also output as the last field of the disk
407
404
     information in machine mode.
417
414
----------
418
415
 
419
416
 -- Command: help [COMMAND]
 
417
 
420
418
     Prints general help, or help on COMMAND.
421
419
 
422
420
     Example:
432
430
-------------
433
431
 
434
432
 -- Command: mklabel LABEL-TYPE
 
433
 
435
434
     Creates a new disk label, of type LABEL-TYPE.  The new disk label
436
435
     will have no partitions.  This command (normally) won't technically
437
436
     destroy your data, but it will make it basically unusable, and you
441
440
 
442
441
     LABEL-TYPE must be one of these supported disk labels:
443
442
        * bsd
444
 
 
445
443
        * loop (raw disk access)
446
 
 
447
444
        * gpt
448
 
 
449
445
        * mac
450
 
 
451
446
        * msdos
452
 
 
453
447
        * pc98
454
 
 
455
448
        * sun
456
449
 
457
450
     Example:
461
454
     Create an MS-DOS disk label.  This is still the most common disk
462
455
     label for PCs.
463
456
 
464
 
  ---------- Footnotes ----------
 
457
   ---------- Footnotes ----------
465
458
 
466
 
  (1) Everyone seems to have a different word for "disk label" -- these
 
459
   (1) Everyone seems to have a different word for "disk label" -- these
467
460
are all the same thing: partition table, partition map.
468
461
 
469
462
 
473
466
------------
474
467
 
475
468
 -- Command: mkpart [PART-TYPE FS-TYPE NAME] START END
 
469
 
476
470
     Creates a new partition, _without_ creating a new file system on
477
471
     that partition.  This is useful for creating partitions for file
478
 
     systems (or LVM, etc.) that Parted doesn't support.  You may
 
472
     systems (or LVM, etc.)  that Parted doesn't support.  You may
479
473
     specify a file system type, to set the appropriate partition code
480
474
     in the partition table for the new partition.  FS-TYPE is required
481
475
     for data partitions (i.e., non-extended partitions).  START and END
482
476
     are the offset from the beginning of the disk, that is, the
483
477
     "distance" from the start of the disk.
484
478
 
485
 
     PART-TYPE is one of `primary', `extended' or `logical', and may be
486
 
     specified only with `msdos' or `dvh' partition tables.  A NAME
487
 
     must be specified for a `gpt' partition table.  Neither PART-TYPE
488
 
     nor NAME may be used with a `sun' partition table.
 
479
     PART-TYPE is one of 'primary', 'extended' or 'logical', and may be
 
480
     specified only with 'msdos' or 'dvh' partition tables.  A NAME must
 
481
     be specified for a 'gpt' partition table.  Neither PART-TYPE nor
 
482
     NAME may be used with a 'sun' partition table.
489
483
 
490
484
     FS-TYPE must be one of these supported file systems:
491
485
        * ext2
492
 
 
493
486
        * fat16, fat32
494
 
 
495
487
        * hfs, hfs+, hfsx
496
 
 
497
488
        * linux-swap
498
 
 
499
489
        * NTFS
500
 
 
501
490
        * reiserfs
502
 
 
503
491
        * ufs
 
492
        * btrfs
504
493
 
505
 
     Example:
 
494
     For example, the following creates a logical partition that will
 
495
     contain an ext2 file system.  The partition will start at the
 
496
     beginning of the disk, and end 692.1 megabytes into the disk.
506
497
 
507
498
          (parted) mkpart logical 0.0 692.1
508
499
 
509
 
     Create a logical partition that will contain an ext2 file system.
510
 
     The partition will start at the beginning of the disk, and end
511
 
     692.1 megabytes into the disk.
512
 
 
 
500
     Now, we will show how to partition a low-end flash device
 
501
     ("low-end", as of 2011/2012).  For such devices, you should use
 
502
     4MiB-aligned partitions(1).  This command creates a tiny
 
503
     place-holder partition at the beginning, and then uses all
 
504
     remaining space to create the partition you'll actually use:
 
505
 
 
506
          $ parted -s /dev/sdX -- mklabel msdos \
 
507
              mkpart primary fat32 64s 4MiB \
 
508
              mkpart primary fat32 4MiB -1s
 
509
 
 
510
     Note the use of '--', to prevent the following '-1s' last-sector
 
511
     indicator from being interpreted as an invalid command-line option.
 
512
     The above creates two empty partitions.  The first is unaligned and
 
513
     tiny, with length less than 4MiB. The second partition starts
 
514
     precisely at the 4MiB mark and extends to the end of the device.
 
515
 
 
516
     The next step is typically to create a file system in the second
 
517
     partition:
 
518
 
 
519
          $ mkfs.vfat /dev/sdX2
 
520
 
 
521
   ---------- Footnotes ----------
 
522
 
 
523
   (1) Cheap flash drives will be with us for a long time to come, and,
 
524
for them, 1MiB alignment is not enough.  Use at least 4MiB-aligned
 
525
partitions.  For details, see Arnd Bergman's article,
 
526
<http://http://lwn.net/Articles/428584/> and its many comments.
513
527
 
514
528
 
515
529
File: parted.info,  Node: name,  Next: print,  Prev: mkpart,  Up: Command explanations
518
532
----------
519
533
 
520
534
 -- Command: name NUMBER NAME
 
535
 
521
536
     Sets the name for the partition NUMBER (GPT, Mac, MIPS and PC98
522
537
     only).  The name can be placed in quotes.
523
538
 
525
540
 
526
541
          (parted) name 2 'Secret Documents'
527
542
 
528
 
     Set the name of partition 2 to `Secret Documents'.
 
543
     Set the name of partition 2 to 'Secret Documents'.
529
544
 
530
545
 
531
546
File: parted.info,  Node: print,  Next: quit,  Prev: name,  Up: Command explanations
534
549
-----------
535
550
 
536
551
 -- Command: print [NUMBER]
 
552
 
537
553
     Displays the partition table on the device parted is editing, or
538
554
     detailed information about a particular partition.
539
555
 
561
577
----------
562
578
 
563
579
 -- Command: quit
 
580
 
564
581
     Quits Parted.
565
582
 
566
 
     It is only after Parted exits that the Linux kernel knows about
567
 
     the changes Parted has made to the disks.  However, the changes
568
 
     caused by typing your commands will _probably_ be made to the disk
 
583
     It is only after Parted exits that the Linux kernel knows about the
 
584
     changes Parted has made to the disks.  However, the changes caused
 
585
     by typing your commands will _probably_ be made to the disk
569
586
     immediately after typing a command.  However, the operating
570
587
     system's cache and the disk's hardware cache may delay this.
571
588
 
572
589
 
573
 
File: parted.info,  Node: rescue,  Next: rm,  Prev: quit,  Up: Command explanations
 
590
File: parted.info,  Node: rescue,  Next: resizepart,  Prev: quit,  Up: Command explanations
574
591
 
575
592
2.4.9 rescue
576
593
------------
579
596
     Rescue a lost partition that used to be located approximately
580
597
     between START and END.  If such a partition is found, Parted will
581
598
     ask you if you want to create a partition for it.  This is useful
582
 
     if you accidently deleted a partition with parted's rm command,
583
 
     for example.
 
599
     if you accidently deleted a partition with parted's rm command, for
 
600
     example.
584
601
 
585
602
     Example:
586
603
 
596
613
          Disk label type: msdos
597
614
          Minor    Start       End     Type      Filesystem  Flags
598
615
 
599
 
     OUCH!  We deleted our ext3 partition!!!  Parted comes to the
 
616
     OUCH! We deleted our ext3 partition!!!  Parted comes to the
600
617
     rescue...
601
618
 
602
619
          (parted) rescue
613
630
 
614
631
     It's back!  :)
615
632
 
616
 
 
617
 
 
618
 
File: parted.info,  Node: rm,  Next: select,  Prev: rescue,  Up: Command explanations
619
 
 
620
 
2.4.10 rm
 
633
 
 
634
File: parted.info,  Node: resizepart,  Next: rm,  Prev: rescue,  Up: Command explanations
 
635
 
 
636
2.4.10 resizepart
 
637
-----------------
 
638
 
 
639
 -- Command: resizepart NUMBER END
 
640
 
 
641
     Moves the END position of partition NUMBER.  Note that this does
 
642
     not modify any filesystem present in the partition.  If you wish to
 
643
     do this, you will need to use external tools, such as 'resize2fs'.
 
644
 
 
645
     When growing a partition you will want to grow the filesystem
 
646
     afterwards, but when shrinking, you need to shrink the filesystem
 
647
     before the partition.
 
648
 
 
649
 
 
650
File: parted.info,  Node: rm,  Next: select,  Prev: resizepart,  Up: Command explanations
 
651
 
 
652
2.4.11 rm
621
653
---------
622
654
 
623
655
 -- Command: rm NUMBER
 
656
 
624
657
     Removes the partition with number NUMBER.  If you accidently delete
625
 
     a partition with this command, use mkpart to recover it.  Also,
626
 
     you can use the gpart program (*note Related information::) to
627
 
     recover damaged disk labels.
 
658
     a partition with this command, use mkpart to recover it.  Also, you
 
659
     can use the gpart program (*note Related information::) to recover
 
660
     damaged disk labels.
628
661
 
629
662
     Note for msdos disk labels: if you delete a logical partition, all
630
663
     logical partitions with a larger partition number will be
631
664
     renumbered.  For example, if you delete a logical partition with a
632
665
     partition number of 6, then logical partitions that were number 7,
633
666
     8 and 9 would be renumbered to 6, 7 and 8 respectively.  This
634
 
     means, for example, that you have to update `/etc/fstab' on
 
667
     means, for example, that you have to update '/etc/fstab' on
635
668
     GNU/Linux systems.
636
669
 
637
670
     Example:
643
676
 
644
677
File: parted.info,  Node: select,  Next: set,  Prev: rm,  Up: Command explanations
645
678
 
646
 
2.4.11 select
 
679
2.4.12 select
647
680
-------------
648
681
 
649
682
 -- Command: select DEVICE
 
683
 
650
684
     Selects the device, DEVICE, for Parted to edit.  The device can be
651
685
     a Linux hard disk device, a partition, a software RAID device or
652
686
     LVM logical volume.
655
689
 
656
690
          (parted) select /dev/hdb
657
691
 
658
 
     Select `/dev/hdb' (the slave device on the first ide controller on
 
692
     Select '/dev/hdb' (the slave device on the first ide controller on
659
693
     Linux) as the device to edit.
660
694
 
661
695
 
662
696
File: parted.info,  Node: set,  Next: unit,  Prev: select,  Up: Command explanations
663
697
 
664
 
2.4.12 set
 
698
2.4.13 set
665
699
----------
666
700
 
667
701
 -- Command: set NUMBER FLAG STATE
 
702
 
668
703
     Changes a flag on the partition with number NUMBER.  A flag can be
669
704
     either "on" or "off".  Some or all of these flags will be
670
705
     available, depending on what disk label you are using:
671
706
 
672
 
    `bios_grub'
 
707
     'bios_grub'
673
708
          (GPT) - Enable this to record that the selected partition is a
674
709
          GRUB BIOS partition.
675
710
 
676
 
    `legacy_boot'
 
711
     'legacy_boot'
677
712
          (GPT) - this flag is used to tell special purpose software
678
713
          that the GPT partition may be bootable.
679
714
 
680
 
    `boot'
 
715
     'boot'
681
716
          (Mac, MS-DOS, PC98) - should be enabled if you want to boot
682
717
          off the partition.  The semantics vary between disk labels.
683
718
          For MS-DOS disk labels, only one partition can be bootable.
685
720
          be bootable.  For PC98 disk labels, all ext2 partitions must
686
721
          be bootable (this is enforced by Parted).
687
722
 
688
 
    `lba'
689
 
          (MS-DOS) - this flag can be enabled to tell MS DOS, MS
690
 
          Windows 9x and MS Windows ME based operating systems to use
691
 
          Linear (LBA) mode.
692
 
 
693
 
    `root'
 
723
     'msftdata'
 
724
          (GPT) - This flag identifies partitions that contain Microsoft
 
725
          filesystems (NTFS or FAT). It may optionally be set on Linux
 
726
          filesystems to mimic the type of configuration created by
 
727
          parted 3.0 and earlier, in which a separate Linux filesystem
 
728
          type code was not available on GPT disks.  This flag can only
 
729
          be removed within parted by replacing it with a competing
 
730
          flag, such as boot or msftres.
 
731
 
 
732
     'msftres'
 
733
          (GPT) - This flag identifies a "Microsoft Reserved" partition,
 
734
          which is used by Windows on GPT disks.  Note that this flag
 
735
          should not normally be set on Windows filesystem partitions
 
736
          (those that contain NTFS or FAT filesystems).
 
737
 
 
738
     'irst'
 
739
          (MS-DOS, GPT) - this flag identifies an Intel Rapid Start
 
740
          Technology partition.
 
741
 
 
742
     'esp'
 
743
          (MS-DOS, GPT) - this flag identifies a UEFI System Partition.
 
744
          On GPT it is an alias for boot.
 
745
 
 
746
     'lba'
 
747
          (MS-DOS) - this flag can be enabled to tell MS DOS, MS Windows
 
748
          9x and MS Windows ME based operating systems to use Linear
 
749
          (LBA) mode.
 
750
 
 
751
     'root'
694
752
          (Mac) - this flag should be enabled if the partition is the
695
753
          root device to be used by Linux.
696
754
 
697
 
    `swap'
 
755
     'swap'
698
756
          (Mac) - this flag should be enabled if the partition is the
699
757
          swap device to be used by Linux.
700
758
 
701
 
    `hidden'
 
759
     'hidden'
702
760
          (MS-DOS, PC98) - this flag can be enabled to hide partitions
703
761
          from Microsoft operating systems.
704
762
 
705
 
    `raid'
 
763
     'raid'
706
764
          (MS-DOS) - this flag can be enabled to tell linux the
707
765
          partition is a software RAID partition.
708
766
 
709
 
    `LVM'
 
767
     'LVM'
710
768
          (MS-DOS) - this flag can be enabled to tell linux the
711
769
          partition is a physical volume.
712
770
 
713
 
    `PALO'
 
771
     'PALO'
714
772
          (MS-DOS) - this flag can be enabled so that the partition can
715
773
          be used by the Linux/PA-RISC boot loader, palo.
716
774
 
717
 
    `PREP'
718
 
          (MS-DOS) - this flag can be enabled so that the partition can
719
 
          be used as a PReP boot partition on PowerPC PReP or IBM
 
775
     'PREP'
 
776
          (MS-DOS, GPT) - this flag can be enabled so that the partition
 
777
          can be used as a PReP boot partition on PowerPC PReP or IBM
720
778
          RS6K/CHRP hardware.
721
779
 
722
 
    `DIAG'
 
780
     'DIAG'
723
781
          (MS-DOS) - Enable this to indicate that a partition can be
724
782
          used as a diagnostics / recovery partition.
725
783
 
726
 
 
727
784
     The print command displays all enabled flags for each partition.
728
785
 
729
786
     Example:
730
787
 
731
788
          (parted) set 1 boot on
732
789
 
733
 
     Set the `boot' flag on partition 1.
 
790
     Set the 'boot' flag on partition 1.
734
791
 
735
792
 
736
793
File: parted.info,  Node: unit,  Prev: set,  Up: Command explanations
737
794
 
738
 
2.4.13 unit
 
795
2.4.14 unit
739
796
-----------
740
797
 
741
798
 -- Command: unit UNIT
 
799
 
742
800
     Selects the current default unit that Parted will use to display
743
801
     locations and capacities on the disk and to interpret those given
744
802
     by the user if they are not suffixed by an UNIT.
745
803
 
746
804
     UNIT may be one of:
747
805
 
748
 
    `s'
 
806
     's'
749
807
          sector (n bytes depending on the sector size, often 512)
750
808
 
751
 
    `B'
 
809
     'B'
752
810
          byte
753
811
 
754
 
    `KiB'
 
812
     'KiB'
755
813
          kibibyte (1024 bytes)
756
814
 
757
 
    `MiB'
 
815
     'MiB'
758
816
          mebibyte (1048576 bytes)
759
817
 
760
 
    `GiB'
 
818
     'GiB'
761
819
          gibibyte (1073741824 bytes)
762
820
 
763
 
    `TiB'
 
821
     'TiB'
764
822
          tebibyte (1099511627776 bytes)
765
823
 
766
 
    `kB'
 
824
     'kB'
767
825
          kilobyte (1000 bytes)
768
826
 
769
 
    `MB'
 
827
     'MB'
770
828
          megabyte (1000000 bytes)
771
829
 
772
 
    `GB'
 
830
     'GB'
773
831
          gigabyte (1000000000 bytes)
774
832
 
775
 
    `TB'
 
833
     'TB'
776
834
          terabyte (1000000000000 bytes)
777
835
 
778
 
    `%'
 
836
     '%'
779
837
          percentage of the device (between 0 and 100)
780
838
 
781
 
    `cyl'
 
839
     'cyl'
782
840
          cylinders (related to the BIOS CHS geometry)
783
841
 
784
 
    `chs'
 
842
     'chs'
785
843
          cylinders, heads, sectors addressing (related to the BIOS CHS
786
844
          geometry)
787
845
 
788
 
    `compact'
 
846
     'compact'
789
847
          This is a special unit that defaults to megabytes for input,
790
848
          and picks a unit that gives a compact human readable
791
849
          representation for output.
797
855
     particular number, but CHS and cylinder units are not supported as
798
856
     a suffix.  If no suffix is given, then the default unit is assumed.
799
857
     Parted will compute sensible ranges for the locations you specify
800
 
     (e.g. a range of +/- 500 MB when you specify the location in "G",
801
 
     and a range of +/- 500 KB when you specify the location in "M")
802
 
     and will select the nearest location in this range from the one you
 
858
     (e.g., a range of +/- 500 MB when you specify the location in "G",
 
859
     and a range of +/- 500 KB when you specify the location in "M") and
 
860
     will select the nearest location in this range from the one you
803
861
     wrote that satisfies constraints from both the operation, the
804
862
     filesystem being worked on, the disk label, other partitions and so
805
 
     on.  Use the sector unit "s" to specify exact locations (if they
806
 
     do not satisfy all constraints, Parted will ask you for the nearest
 
863
     on.  Use the sector unit "s" to specify exact locations (if they do
 
864
     not satisfy all constraints, Parted will ask you for the nearest
807
865
     solution).  Note that negative numbers count back from the end of
808
866
     the disk, with "-1s" pointing to the last sector of the disk.
809
867
 
815
873
     partition start request of "4GB", which may actually resolve to
816
874
     some sector up to 500MB before or after that point.  Thus, when
817
875
     creating a partition, you should prefer to specify units of bytes
818
 
     ("B"), sectors ("s"), or IEC binary units like "MiB", but not
819
 
     "MB", "GB", etc.
 
876
     ("B"), sectors ("s"), or IEC binary units like "MiB", but not "MB",
 
877
     "GB", etc.
820
878
 
821
879
     Example:
822
880
 
848
906
          3       2155MB  122935MB 120780MB extended
849
907
          5       2155MB  7452MB  5297MB  logical   reiserfs
850
908
 
851
 
 
852
909
 
853
910
File: parted.info,  Node: Related information,  Next: Copying This Manual,  Prev: Using Parted,  Up: Top
854
911
 
860
917
 
861
918
  These files in the Parted distribution contain further information:
862
919
 
863
 
   * `ABOUT-NLS' - information about using Native Language Support, and
 
920
   * 'ABOUT-NLS' - information about using Native Language Support, and
864
921
     the Free Translation Project.
865
922
 
866
 
   * `AUTHORS' - who wrote what.
867
 
 
868
 
   * `ChangeLog' - record of changes made to Parted.
869
 
 
870
 
   * `COPYING' - the GNU General Public License, the terms under which
 
923
   * 'AUTHORS' - who wrote what.
 
924
 
 
925
   * 'ChangeLog' - record of changes made to Parted.
 
926
 
 
927
   * 'COPYING' - the GNU General Public License, the terms under which
871
928
     GNU Parted may be distributed.
872
929
 
873
 
   * `COPYING.DOC' - the GNU Free Documentation Licence, the term under
 
930
   * 'COPYING.DOC' - the GNU Free Documentation Licence, the term under
874
931
     which Parted's documentation may be distributed.
875
932
 
876
 
   * `INSTALL' -- how to compile and install Parted, and most other free
 
933
   * 'INSTALL' -- how to compile and install Parted, and most other free
877
934
     software
878
935
 
879
 
 
880
936
 
881
937
File: parted.info,  Node: Copying This Manual,  Next: History,  Prev: Related information,  Up: Top
882
938
 
896
952
                     Version 1.3, 3 November 2008
897
953
 
898
954
     Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
899
 
     `http://fsf.org/'
 
955
     <http://fsf.org/>
900
956
 
901
957
     Everyone is permitted to copy and distribute verbatim copies
902
958
     of this license document, but changing it is not allowed.
921
977
     free program should come with manuals providing the same freedoms
922
978
     that the software does.  But this License is not limited to
923
979
     software manuals; it can be used for any textual work, regardless
924
 
     of subject matter or whether it is published as a printed book.
925
 
     We recommend this License principally for works whose purpose is
 
980
     of subject matter or whether it is published as a printed book.  We
 
981
     recommend this License principally for works whose purpose is
926
982
     instruction or reference.
927
983
 
928
984
  1. APPLICABILITY AND DEFINITIONS
929
985
 
930
986
     This License applies to any manual or other work, in any medium,
931
 
     that contains a notice placed by the copyright holder saying it
932
 
     can be distributed under the terms of this License.  Such a notice
 
987
     that contains a notice placed by the copyright holder saying it can
 
988
     be distributed under the terms of this License.  Such a notice
933
989
     grants a world-wide, royalty-free license, unlimited in duration,
934
990
     to use that work under the conditions stated herein.  The
935
991
     "Document", below, refers to any such manual or work.  Any member
936
 
     of the public is a licensee, and is addressed as "you".  You
937
 
     accept the license if you copy, modify or distribute the work in a
938
 
     way requiring permission under copyright law.
 
992
     of the public is a licensee, and is addressed as "you".  You accept
 
993
     the license if you copy, modify or distribute the work in a way
 
994
     requiring permission under copyright law.
939
995
 
940
996
     A "Modified Version" of the Document means any work containing the
941
997
     Document or a portion of it, either copied verbatim, or with
953
1009
     regarding them.
954
1010
 
955
1011
     The "Invariant Sections" are certain Secondary Sections whose
956
 
     titles are designated, as being those of Invariant Sections, in
957
 
     the notice that says that the Document is released under this
958
 
     License.  If a section does not fit the above definition of
959
 
     Secondary then it is not allowed to be designated as Invariant.
960
 
     The Document may contain zero Invariant Sections.  If the Document
961
 
     does not identify any Invariant Sections then there are none.
 
1012
     titles are designated, as being those of Invariant Sections, in the
 
1013
     notice that says that the Document is released under this License.
 
1014
     If a section does not fit the above definition of Secondary then it
 
1015
     is not allowed to be designated as Invariant.  The Document may
 
1016
     contain zero Invariant Sections.  If the Document does not identify
 
1017
     any Invariant Sections then there are none.
962
1018
 
963
1019
     The "Cover Texts" are certain short passages of text that are
964
1020
     listed, as Front-Cover Texts or Back-Cover Texts, in the notice
969
1025
     A "Transparent" copy of the Document means a machine-readable copy,
970
1026
     represented in a format whose specification is available to the
971
1027
     general public, that is suitable for revising the document
972
 
     straightforwardly with generic text editors or (for images
973
 
     composed of pixels) generic paint programs or (for drawings) some
974
 
     widely available drawing editor, and that is suitable for input to
975
 
     text formatters or for automatic translation to a variety of
976
 
     formats suitable for input to text formatters.  A copy made in an
977
 
     otherwise Transparent file format whose markup, or absence of
978
 
     markup, has been arranged to thwart or discourage subsequent
979
 
     modification by readers is not Transparent.  An image format is
980
 
     not Transparent if used for any substantial amount of text.  A
981
 
     copy that is not "Transparent" is called "Opaque".
 
1028
     straightforwardly with generic text editors or (for images composed
 
1029
     of pixels) generic paint programs or (for drawings) some widely
 
1030
     available drawing editor, and that is suitable for input to text
 
1031
     formatters or for automatic translation to a variety of formats
 
1032
     suitable for input to text formatters.  A copy made in an otherwise
 
1033
     Transparent file format whose markup, or absence of markup, has
 
1034
     been arranged to thwart or discourage subsequent modification by
 
1035
     readers is not Transparent.  An image format is not Transparent if
 
1036
     used for any substantial amount of text.  A copy that is not
 
1037
     "Transparent" is called "Opaque".
982
1038
 
983
1039
     Examples of suitable formats for Transparent copies include plain
984
1040
     ASCII without markup, Texinfo input format, LaTeX input format,
985
 
     SGML or XML using a publicly available DTD, and
986
 
     standard-conforming simple HTML, PostScript or PDF designed for
987
 
     human modification.  Examples of transparent image formats include
988
 
     PNG, XCF and JPG.  Opaque formats include proprietary formats that
989
 
     can be read and edited only by proprietary word processors, SGML or
990
 
     XML for which the DTD and/or processing tools are not generally
991
 
     available, and the machine-generated HTML, PostScript or PDF
992
 
     produced by some word processors for output purposes only.
 
1041
     SGML or XML using a publicly available DTD, and standard-conforming
 
1042
     simple HTML, PostScript or PDF designed for human modification.
 
1043
     Examples of transparent image formats include PNG, XCF and JPG.
 
1044
     Opaque formats include proprietary formats that can be read and
 
1045
     edited only by proprietary word processors, SGML or XML for which
 
1046
     the DTD and/or processing tools are not generally available, and
 
1047
     the machine-generated HTML, PostScript or PDF produced by some word
 
1048
     processors for output purposes only.
993
1049
 
994
1050
     The "Title Page" means, for a printed book, the title page itself,
995
1051
     plus such following pages as are needed to hold, legibly, the
1027
1083
     may not use technical measures to obstruct or control the reading
1028
1084
     or further copying of the copies you make or distribute.  However,
1029
1085
     you may accept compensation in exchange for copies.  If you
1030
 
     distribute a large enough number of copies you must also follow
1031
 
     the conditions in section 3.
 
1086
     distribute a large enough number of copies you must also follow the
 
1087
     conditions in section 3.
1032
1088
 
1033
1089
     You may also lend copies, under the same conditions stated above,
1034
1090
     and you may publicly display copies.
1042
1098
     these Cover Texts: Front-Cover Texts on the front cover, and
1043
1099
     Back-Cover Texts on the back cover.  Both covers must also clearly
1044
1100
     and legibly identify you as the publisher of these copies.  The
1045
 
     front cover must present the full title with all words of the
1046
 
     title equally prominent and visible.  You may add other material
1047
 
     on the covers in addition.  Copying with changes limited to the
1048
 
     covers, as long as they preserve the title of the Document and
1049
 
     satisfy these conditions, can be treated as verbatim copying in
1050
 
     other respects.
 
1101
     front cover must present the full title with all words of the title
 
1102
     equally prominent and visible.  You may add other material on the
 
1103
     covers in addition.  Copying with changes limited to the covers, as
 
1104
     long as they preserve the title of the Document and satisfy these
 
1105
     conditions, can be treated as verbatim copying in other respects.
1051
1106
 
1052
1107
     If the required texts for either cover are too voluminous to fit
1053
1108
     legibly, you should put the first ones listed (as many as fit
1055
1110
     adjacent pages.
1056
1111
 
1057
1112
     If you publish or distribute Opaque copies of the Document
1058
 
     numbering more than 100, you must either include a
1059
 
     machine-readable Transparent copy along with each Opaque copy, or
1060
 
     state in or with each Opaque copy a computer-network location from
1061
 
     which the general network-using public has access to download
1062
 
     using public-standard network protocols a complete Transparent
1063
 
     copy of the Document, free of added material.  If you use the
1064
 
     latter option, you must take reasonably prudent steps, when you
1065
 
     begin distribution of Opaque copies in quantity, to ensure that
1066
 
     this Transparent copy will remain thus accessible at the stated
1067
 
     location until at least one year after the last time you
1068
 
     distribute an Opaque copy (directly or through your agents or
1069
 
     retailers) of that edition to the public.
 
1113
     numbering more than 100, you must either include a machine-readable
 
1114
     Transparent copy along with each Opaque copy, or state in or with
 
1115
     each Opaque copy a computer-network location from which the general
 
1116
     network-using public has access to download using public-standard
 
1117
     network protocols a complete Transparent copy of the Document, free
 
1118
     of added material.  If you use the latter option, you must take
 
1119
     reasonably prudent steps, when you begin distribution of Opaque
 
1120
     copies in quantity, to ensure that this Transparent copy will
 
1121
     remain thus accessible at the stated location until at least one
 
1122
     year after the last time you distribute an Opaque copy (directly or
 
1123
     through your agents or retailers) of that edition to the public.
1070
1124
 
1071
1125
     It is requested, but not required, that you contact the authors of
1072
 
     the Document well before redistributing any large number of
1073
 
     copies, to give them a chance to provide you with an updated
1074
 
     version of the Document.
 
1126
     the Document well before redistributing any large number of copies,
 
1127
     to give them a chance to provide you with an updated version of the
 
1128
     Document.
1075
1129
 
1076
1130
  4. MODIFICATIONS
1077
1131
 
1078
1132
     You may copy and distribute a Modified Version of the Document
1079
1133
     under the conditions of sections 2 and 3 above, provided that you
1080
 
     release the Modified Version under precisely this License, with
1081
 
     the Modified Version filling the role of the Document, thus
1082
 
     licensing distribution and modification of the Modified Version to
1083
 
     whoever possesses a copy of it.  In addition, you must do these
1084
 
     things in the Modified Version:
 
1134
     release the Modified Version under precisely this License, with the
 
1135
     Modified Version filling the role of the Document, thus licensing
 
1136
     distribution and modification of the Modified Version to whoever
 
1137
     possesses a copy of it.  In addition, you must do these things in
 
1138
     the Modified Version:
1085
1139
 
1086
1140
       A. Use in the Title Page (and on the covers, if any) a title
1087
 
          distinct from that of the Document, and from those of
1088
 
          previous versions (which should, if there were any, be listed
1089
 
          in the History section of the Document).  You may use the
1090
 
          same title as a previous version if the original publisher of
1091
 
          that version gives permission.
 
1141
          distinct from that of the Document, and from those of previous
 
1142
          versions (which should, if there were any, be listed in the
 
1143
          History section of the Document).  You may use the same title
 
1144
          as a previous version if the original publisher of that
 
1145
          version gives permission.
1092
1146
 
1093
1147
       B. List on the Title Page, as authors, one or more persons or
1094
1148
          entities responsible for authorship of the modifications in
1118
1172
 
1119
1173
       I. Preserve the section Entitled "History", Preserve its Title,
1120
1174
          and add to it an item stating at least the title, year, new
1121
 
          authors, and publisher of the Modified Version as given on
1122
 
          the Title Page.  If there is no section Entitled "History" in
1123
 
          the Document, create one stating the title, year, authors,
1124
 
          and publisher of the Document as given on its Title Page,
1125
 
          then add an item describing the Modified Version as stated in
1126
 
          the previous sentence.
 
1175
          authors, and publisher of the Modified Version as given on the
 
1176
          Title Page.  If there is no section Entitled "History" in the
 
1177
          Document, create one stating the title, year, authors, and
 
1178
          publisher of the Document as given on its Title Page, then add
 
1179
          an item describing the Modified Version as stated in the
 
1180
          previous sentence.
1127
1181
 
1128
1182
       J. Preserve the network location, if any, given in the Document
1129
1183
          for public access to a Transparent copy of the Document, and
1130
1184
          likewise the network locations given in the Document for
1131
 
          previous versions it was based on.  These may be placed in
1132
 
          the "History" section.  You may omit a network location for a
1133
 
          work that was published at least four years before the
1134
 
          Document itself, or if the original publisher of the version
1135
 
          it refers to gives permission.
 
1185
          previous versions it was based on.  These may be placed in the
 
1186
          "History" section.  You may omit a network location for a work
 
1187
          that was published at least four years before the Document
 
1188
          itself, or if the original publisher of the version it refers
 
1189
          to gives permission.
1136
1190
 
1137
1191
       K. For any section Entitled "Acknowledgements" or "Dedications",
1138
 
          Preserve the Title of the section, and preserve in the
1139
 
          section all the substance and tone of each of the contributor
 
1192
          Preserve the Title of the section, and preserve in the section
 
1193
          all the substance and tone of each of the contributor
1140
1194
          acknowledgements and/or dedications given therein.
1141
1195
 
1142
 
       L. Preserve all the Invariant Sections of the Document,
1143
 
          unaltered in their text and in their titles.  Section numbers
1144
 
          or the equivalent are not considered part of the section
1145
 
          titles.
 
1196
       L. Preserve all the Invariant Sections of the Document, unaltered
 
1197
          in their text and in their titles.  Section numbers or the
 
1198
          equivalent are not considered part of the section titles.
1146
1199
 
1147
1200
       M. Delete any section Entitled "Endorsements".  Such a section
1148
1201
          may not be included in the Modified Version.
1155
1208
 
1156
1209
     If the Modified Version includes new front-matter sections or
1157
1210
     appendices that qualify as Secondary Sections and contain no
1158
 
     material copied from the Document, you may at your option
1159
 
     designate some or all of these sections as invariant.  To do this,
1160
 
     add their titles to the list of Invariant Sections in the Modified
1161
 
     Version's license notice.  These titles must be distinct from any
1162
 
     other section titles.
 
1211
     material copied from the Document, you may at your option designate
 
1212
     some or all of these sections as invariant.  To do this, add their
 
1213
     titles to the list of Invariant Sections in the Modified Version's
 
1214
     license notice.  These titles must be distinct from any other
 
1215
     section titles.
1163
1216
 
1164
1217
     You may add a section Entitled "Endorsements", provided it contains
1165
1218
     nothing but endorsements of your Modified Version by various
1168
1221
     definition of a standard.
1169
1222
 
1170
1223
     You may add a passage of up to five words as a Front-Cover Text,
1171
 
     and a passage of up to 25 words as a Back-Cover Text, to the end
1172
 
     of the list of Cover Texts in the Modified Version.  Only one
1173
 
     passage of Front-Cover Text and one of Back-Cover Text may be
1174
 
     added by (or through arrangements made by) any one entity.  If the
1175
 
     Document already includes a cover text for the same cover,
1176
 
     previously added by you or by arrangement made by the same entity
1177
 
     you are acting on behalf of, you may not add another; but you may
1178
 
     replace the old one, on explicit permission from the previous
1179
 
     publisher that added the old one.
 
1224
     and a passage of up to 25 words as a Back-Cover Text, to the end of
 
1225
     the list of Cover Texts in the Modified Version.  Only one passage
 
1226
     of Front-Cover Text and one of Back-Cover Text may be added by (or
 
1227
     through arrangements made by) any one entity.  If the Document
 
1228
     already includes a cover text for the same cover, previously added
 
1229
     by you or by arrangement made by the same entity you are acting on
 
1230
     behalf of, you may not add another; but you may replace the old
 
1231
     one, on explicit permission from the previous publisher that added
 
1232
     the old one.
1180
1233
 
1181
1234
     The author(s) and publisher(s) of the Document do not by this
1182
1235
     License give permission to use their names for publicity for or to
1186
1239
 
1187
1240
     You may combine the Document with other documents released under
1188
1241
     this License, under the terms defined in section 4 above for
1189
 
     modified versions, provided that you include in the combination
1190
 
     all of the Invariant Sections of all of the original documents,
 
1242
     modified versions, provided that you include in the combination all
 
1243
     of the Invariant Sections of all of the original documents,
1191
1244
     unmodified, and list them all as Invariant Sections of your
1192
1245
     combined work in its license notice, and that you preserve all
1193
1246
     their Warranty Disclaimers.
1214
1267
     documents released under this License, and replace the individual
1215
1268
     copies of this License in the various documents with a single copy
1216
1269
     that is included in the collection, provided that you follow the
1217
 
     rules of this License for verbatim copying of each of the
1218
 
     documents in all other respects.
 
1270
     rules of this License for verbatim copying of each of the documents
 
1271
     in all other respects.
1219
1272
 
1220
1273
     You may extract a single document from such a collection, and
1221
1274
     distribute it individually under this License, provided you insert
1222
 
     a copy of this License into the extracted document, and follow
1223
 
     this License in all other respects regarding verbatim copying of
1224
 
     that document.
 
1275
     a copy of this License into the extracted document, and follow this
 
1276
     License in all other respects regarding verbatim copying of that
 
1277
     document.
1225
1278
 
1226
1279
  7. AGGREGATION WITH INDEPENDENT WORKS
1227
1280
 
1228
1281
     A compilation of the Document or its derivatives with other
1229
 
     separate and independent documents or works, in or on a volume of
1230
 
     a storage or distribution medium, is called an "aggregate" if the
 
1282
     separate and independent documents or works, in or on a volume of a
 
1283
     storage or distribution medium, is called an "aggregate" if the
1231
1284
     copyright resulting from the compilation is not used to limit the
1232
1285
     legal rights of the compilation's users beyond what the individual
1233
1286
     works permit.  When the Document is included in an aggregate, this
1272
1325
 
1273
1326
     However, if you cease all violation of this License, then your
1274
1327
     license from a particular copyright holder is reinstated (a)
1275
 
     provisionally, unless and until the copyright holder explicitly
1276
 
     and finally terminates your license, and (b) permanently, if the
 
1328
     provisionally, unless and until the copyright holder explicitly and
 
1329
     finally terminates your license, and (b) permanently, if the
1277
1330
     copyright holder fails to notify you of the violation by some
1278
1331
     reasonable means prior to 60 days after the cessation.
1279
1332
 
1285
1338
     after your receipt of the notice.
1286
1339
 
1287
1340
     Termination of your rights under this section does not terminate
1288
 
     the licenses of parties who have received copies or rights from
1289
 
     you under this License.  If your rights have been terminated and
1290
 
     not permanently reinstated, receipt of a copy of some or all of
1291
 
     the same material does not give you any rights to use it.
 
1341
     the licenses of parties who have received copies or rights from you
 
1342
     under this License.  If your rights have been terminated and not
 
1343
     permanently reinstated, receipt of a copy of some or all of the
 
1344
     same material does not give you any rights to use it.
1292
1345
 
1293
 
 10. FUTURE REVISIONS OF THIS LICENSE
 
1346
  10. FUTURE REVISIONS OF THIS LICENSE
1294
1347
 
1295
1348
     The Free Software Foundation may publish new, revised versions of
1296
1349
     the GNU Free Documentation License from time to time.  Such new
1297
1350
     versions will be similar in spirit to the present version, but may
1298
1351
     differ in detail to address new problems or concerns.  See
1299
 
     `http://www.gnu.org/copyleft/'.
 
1352
     <http://www.gnu.org/copyleft/>.
1300
1353
 
1301
1354
     Each version of the License is given a distinguishing version
1302
1355
     number.  If the Document specifies that a particular numbered
1303
1356
     version of this License "or any later version" applies to it, you
1304
1357
     have the option of following the terms and conditions either of
1305
1358
     that specified version or of any later version that has been
1306
 
     published (not as a draft) by the Free Software Foundation.  If
1307
 
     the Document does not specify a version number of this License,
1308
 
     you may choose any version ever published (not as a draft) by the
1309
 
     Free Software Foundation.  If the Document specifies that a proxy
1310
 
     can decide which future versions of this License can be used, that
 
1359
     published (not as a draft) by the Free Software Foundation.  If the
 
1360
     Document does not specify a version number of this License, you may
 
1361
     choose any version ever published (not as a draft) by the Free
 
1362
     Software Foundation.  If the Document specifies that a proxy can
 
1363
     decide which future versions of this License can be used, that
1311
1364
     proxy's public statement of acceptance of a version permanently
1312
1365
     authorizes you to choose that version for the Document.
1313
1366
 
1314
 
 11. RELICENSING
 
1367
  11. RELICENSING
1315
1368
 
1316
1369
     "Massive Multiauthor Collaboration Site" (or "MMC Site") means any
1317
1370
     World Wide Web server that publishes copyrightable works and also
1341
1394
     site under CC-BY-SA on the same site at any time before August 1,
1342
1395
     2009, provided the MMC is eligible for relicensing.
1343
1396
 
1344
 
 
1345
1397
ADDENDUM: How to use this License for your documents
1346
1398
====================================================
1347
1399
 
1369
1421
situation.
1370
1422
 
1371
1423
  If your document contains nontrivial examples of program code, we
1372
 
recommend releasing these examples in parallel under your choice of
1373
 
free software license, such as the GNU General Public License, to
1374
 
permit their use in free software.
 
1424
recommend releasing these examples in parallel under your choice of free
 
1425
software license, such as the GNU General Public License, to permit
 
1426
their use in free software.
1375
1427
 
1376
1428
 
1377
1429
File: parted.info,  Node: History,  Next: Concept index,  Prev: Copying This Manual,  Up: Top
1379
1431
Appendix B This manual's history
1380
1432
********************************
1381
1433
 
1382
 
This manual was based on the file `USER' included in GNU Parted version
 
1434
This manual was based on the file 'USER' included in GNU Parted version
1383
1435
1.4.22 source distribution.  The GNU Parted source distribution is
1384
 
available at `ftp.gnu.org/gnu/parted'.
 
1436
available at <ftp.gnu.org/gnu/parted>.
1385
1437
 
1386
1438
  Initial Texinfo formatting by Richard M. Kreuter, 2002.
1387
1439
 
1389
1441
Polzer from July 2005 onwards.
1390
1442
 
1391
1443
  This manual is distributed under the GNU Free Documentation License,
1392
 
version 1.1 or later, at your discretion, any later version published
1393
 
by the Free Software Foundation; with no Invariant Sections, with no
 
1444
version 1.1 or later, at your discretion, any later version published by
 
1445
the Free Software Foundation; with no Invariant Sections, with no
1394
1446
Front-Cover Texts, and with no Back-Cover Texts.  *Note Copying This
1395
1447
Manual::, for details.
1396
1448
 
1415
1467
* command description, print:            print.                 (line 6)
1416
1468
* command description, quit:             quit.                  (line 6)
1417
1469
* command description, rescue:           rescue.                (line 6)
 
1470
* command description, resizepart:       resizepart.            (line 6)
1418
1471
* command description, rm:               rm.                    (line 6)
1419
1472
* command description, select:           select.                (line 6)
1420
1473
* command description, set:              set.                   (line 6)
1456
1509
* reporting bugs:                        Overview.              (line 6)
1457
1510
* required software:                     Software Required.     (line 6)
1458
1511
* rescue, command description:           rescue.                (line 6)
 
1512
* resizepart, command description:       resizepart.            (line 6)
1459
1513
* rm, command description:               rm.                    (line 6)
1460
1514
* select, command description:           select.                (line 6)
1461
1515
* set, command description:              set.                   (line 6)
1467
1521
 
1468
1522
 
1469
1523
Tag Table:
1470
 
Node: Top766
1471
 
Node: Introduction1569
1472
 
Node: Overview2025
1473
 
Node: Software Required3552
1474
 
Node: Supported Platforms4911
1475
 
Node: License5365
1476
 
Node: Compiling5996
1477
 
Node: Using Parted7723
1478
 
Node: Partitioning8142
1479
 
Node: Running Parted8598
1480
 
Node: Invoking Parted10980
1481
 
Node: Command explanations11760
1482
 
Node: align-check12210
 
1524
Node: Top764
 
1525
Node: Introduction1567
 
1526
Node: Overview2023
 
1527
Node: Software Required3550
 
1528
Node: Supported Platforms4904
 
1529
Node: License5358
 
1530
Node: Compiling5989
 
1531
Node: Using Parted7715
 
1532
Node: Partitioning8134
 
1533
Node: Running Parted8590
 
1534
Node: Invoking Parted10971
 
1535
Node: Command explanations11752
 
1536
Node: align-check12217
1483
1537
Node: disk_set12942
1484
 
Node: help13642
1485
 
Node: mklabel13924
1486
 
Ref: mklabel-Footnote-114807
1487
 
Node: mkpart14936
1488
 
Node: name16345
1489
 
Node: print16723
1490
 
Node: quit17610
1491
 
Node: rescue18103
1492
 
Node: rm19622
1493
 
Node: select20502
1494
 
Node: set20971
1495
 
Node: unit23406
1496
 
Ref: IEC binary units25773
1497
 
Node: Related information27867
1498
 
Node: Copying This Manual28690
1499
 
Node: GNU Free Documentation License28934
1500
 
Node: History54064
1501
 
Node: Concept index54869
 
1538
Node: help13643
 
1539
Node: mklabel13926
 
1540
Ref: mklabel-Footnote-114805
 
1541
Node: mkpart14935
 
1542
Ref: mkpart-Footnote-117345
 
1543
Node: name17603
 
1544
Node: print17982
 
1545
Node: quit18870
 
1546
Node: rescue19364
 
1547
Node: resizepart20889
 
1548
Node: rm21437
 
1549
Node: select22322
 
1550
Node: set22792
 
1551
Node: unit26249
 
1552
Ref: IEC binary units28632
 
1553
Node: Related information30725
 
1554
Node: Copying This Manual31547
 
1555
Node: GNU Free Documentation License31791
 
1556
Node: History56901
 
1557
Node: Concept index57706
1502
1558
 
1503
1559
End Tag Table