Update help manual with additional partition flags (#776002)

Also clarify legacy GRUB section regarding install to MBR or
to partition.

Bug 776002 - Update help with additional partition flags
This commit is contained in:
Curtis Gedak 2016-12-12 10:04:58 -07:00 committed by Mike Fleetwood
parent 8373d36ed2
commit c90a8f499c

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [ "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
<!ENTITY appversion "0.22.0"> <!ENTITY appversion "0.27.0">
<!ENTITY manrevision "1.9"> <!ENTITY manrevision "1.10">
<!ENTITY date "March 2015"> <!ENTITY date "December 2016">
<!ENTITY app "gparted"> <!ENTITY app "gparted">
<!ENTITY appname "GParted"> <!ENTITY appname "GParted">
<!-- Information about the entities: <!-- Information about the entities:
@ -46,7 +46,7 @@
</abstract> </abstract>
<copyright> <copyright>
<year>2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015</year> <year>2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016</year>
<holder>Curtis Gedak</holder> <holder>Curtis Gedak</holder>
</copyright> </copyright>
<copyright> <copyright>
@ -113,6 +113,15 @@
<!-- According to GNU FDL, revision history is mandatory if you are --> <!-- According to GNU FDL, revision history is mandatory if you are -->
<!-- modifying/reusing someone else's document. If not, you can omit it. --> <!-- modifying/reusing someone else's document. If not, you can omit it. -->
<revhistory> <revhistory>
<revision>
<revnumber>&appname; Manual V1.10</revnumber>
<date>December 2016</date>
<revdescription>
<para role="author">Curtis Gedak</para>
<para role="publisher">&appname; Project</para>
<para role="annotations">Describes version 0.27.0 of &appname;</para>
</revdescription>
</revision>
<revision> <revision>
<revnumber>&appname; Manual V1.9</revnumber> <revnumber>&appname; Manual V1.9</revnumber>
<date>March 2015</date> <date>March 2015</date>
@ -2042,6 +2051,15 @@
diagnostics / recovery. diagnostics / recovery.
</para> </para>
</listitem> </listitem>
<listitem>
<para>
ESP indicates an EFI System Partition used to boot
computers with the Unified Extensible Firmware
Interface (UEFI) class 2 that includes compatibility
support for BIOS functions including the MBR partition
structure.
</para>
</listitem>
<listitem> <listitem>
<para> <para>
Hidden is used by some commercial operating systems. Hidden is used by some commercial operating systems.
@ -2049,6 +2067,12 @@
operating system. operating system.
</para> </para>
</listitem> </listitem>
<listitem>
<para>
Irst identifies an Intel Rapid Start Technology
partition.
</para>
</listitem>
<listitem> <listitem>
<para> <para>
LBA is used by some commercial operating system LBA is used by some commercial operating system
@ -2074,7 +2098,7 @@
<listitem> <listitem>
<para> <para>
Prep is used to indicate the boot partition Prep is used to indicate the boot partition
on Power Performance Computing (PowerPC) hardware. on Power Performance Computing (PowerPC) hardware.
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
@ -2117,6 +2141,14 @@
or recovery. or recovery.
</para> </para>
</listitem> </listitem>
<listitem>
<para>
ESP indicates an EFI System Partition used to boot
computers with Extensible Firmware Interface (EFI)
class 1 or Unified Extensible Firmware Interface
(UEFI) class 2 or UEFI class 3.
</para>
</listitem>
<listitem> <listitem>
<para> <para>
Hidden is used by some commercial operating systems. Hidden is used by some commercial operating systems.
@ -2130,6 +2162,12 @@
service partition. service partition.
</para> </para>
</listitem> </listitem>
<listitem>
<para>
Irst identifies an Intel Rapid Start Technology
partition.
</para>
</listitem>
<listitem> <listitem>
<para> <para>
Legacy_boot is used by some special purpose software Legacy_boot is used by some special purpose software
@ -2142,12 +2180,24 @@
Volume Manager (LVM). Volume Manager (LVM).
</para> </para>
</listitem> </listitem>
<listitem>
<para>
Msftdata identifies partitions that contain Microsoft
file systems such as NTFS or FAT.
</para>
</listitem>
<listitem> <listitem>
<para> <para>
Msftres is used to indicate a Microsoft Reserved Msftres is used to indicate a Microsoft Reserved
partition. partition.
</para> </para>
</listitem> </listitem>
<listitem>
<para>
Prep is used to indicate the boot partition
on Power Performance Computing (PowerPC) hardware.
</para>
</listitem>
<listitem> <listitem>
<para> <para>
RAID indicates the partition is used in a Redundant RAID indicates the partition is used in a Redundant
@ -2746,15 +2796,22 @@
<para> <para>
Set the <application>grub</application> root device by Set the <application>grub</application> root device by
specifying the device returned by the specifying the device returned by the
<command>find</command> command. <command>find</command> command. This should be the
partition containing the boot directory.
<screen><prompt>grub&gt; </prompt>root <replaceable>(hd0,0)</replaceable></screen> <screen><prompt>grub&gt; </prompt>root <replaceable>(hd0,0)</replaceable></screen>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
Reinstall <application>grub</application> by specifying Reinstall the <application>grub</application> boot
the device returned by the <command>find</command> loader into the Master Boot Record (MBR) with:
command. <screen><prompt>grub&gt; </prompt>setup <replaceable>(hd0)</replaceable></screen>
</para>
<para>
If you want to install the
<application>grub</application> boat loader into the
boot sector of a partition, instead specify a partition
with:
<screen><prompt>grub&gt; </prompt>setup <replaceable>(hd0,0)</replaceable></screen> <screen><prompt>grub&gt; </prompt>setup <replaceable>(hd0,0)</replaceable></screen>
</para> </para>
</listitem> </listitem>