source: BOOK/final-system/ppc/parted.xml @ b27081c4

sysvinit
Last change on this file since b27081c4 was b27081c4, checked in by Chris Staub <chris@…>, 8 years ago

Put one configure option per line

  • Property mode set to 100644
File size: 3.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  %general-entities;
6]>
7
8<sect1 id="ch-system-parted" role="wrap">
9  <?dbhtml filename="parted.html"?>
10
11  <title>Parted-&parted-version;</title>
12
13  <indexterm zone="ch-system-parted">
14    <primary sortas="a-Parted">Parted</primary>
15  </indexterm>
16
17  <sect2 role="package">
18    <title/>
19
20    <para>Parted is a program for creating, copying and modifying partitions,
21    and the file systems on them. Parted is especially useful on PPC machines
22    in that, unlike <command>fdisk</command>, it accurately reads Macintosh
23    partition maps.</para>
24
25  </sect2>
26
27  <sect2 role="installation">
28    <title>Installation of Parted</title>
29
30    <para os="a">Prepare Parted for compilation:</para>
31
32<screen><userinput>./configure \
33    --prefix=/usr \
34    --disable-device-mapper</userinput></screen>
35
36    <variablelist os="b">
37      <title>The meaning of the configure options:</title>
38
39      <varlistentry os="b1">
40        <term><parameter>--disable-device-mapper</parameter></term>
41        <listitem>
42          <para>This disables the use of the device-mapper library, which we do
43          not install in CLFS.</para>
44        </listitem>
45      </varlistentry>
46
47    </variablelist>
48
49    <para os="c">Compile the Parted package:</para>
50
51<screen os="d"><userinput>make</userinput></screen>
52
53    <para os="e">Install the package:</para>
54
55<screen os="f"><userinput>make install</userinput></screen>
56
57  </sect2>
58
59  <sect2 id="contents-parted" role="content">
60    <title>Contents of Parted</title>
61
62    <segmentedlist>
63      <segtitle>Installed programs</segtitle>
64      <segtitle>Installed libraries</segtitle>
65
66      <seglistitem>
67        <seg>parted, partprobe</seg>
68        <seg>libparted.[a,so]</seg>
69      </seglistitem>
70    </segmentedlist>
71
72    <variablelist>
73      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
74      <?dbfo list-presentation="list"?>
75      <?dbhtml list-presentation="table"?>
76
77      <varlistentry id="parted">
78        <term><command>parted</command></term>
79        <listitem>
80          <para>A program for creating, destroying, resizing, checking and
81          copying partitions, and the filesystems on them. This is useful
82          for creating space for new operating systems, reorganising disk
83          usage, copying data between hard disks, and disk imaging.</para>
84          <indexterm zone="ch-system-parted parted">
85            <primary sortas="e-parted">parted</primary>
86          </indexterm>
87        </listitem>
88      </varlistentry>
89
90      <varlistentry id="partprobe">
91        <term><command>partprobe</command></term>
92        <listitem>
93          <para>Informs the OS of partition table changes.</para>
94          <indexterm zone="ch-system-parted partprobe">
95            <primary sortas="e-partprobe">partprobe</primary>
96          </indexterm>
97        </listitem>
98      </varlistentry>
99
100      <varlistentry id="libparted">
101        <term><filename class="libraryfile">libparted</filename></term>
102        <listitem>
103          <para>A library to manipulate partitions.</para>
104          <indexterm zone="ch-system-parted libparted">
105            <primary sortas="c-libparted">libparted</primary>
106          </indexterm>
107        </listitem>
108      </varlistentry>
109
110    </variablelist>
111
112  </sect2>
113
114</sect1>
Note: See TracBrowser for help on using the repository browser.