source: postlfs/filesystems/parted.xml@ 6397333

basic
Last change on this file since 6397333 was 6397333, checked in by Bruce Dubbs <bdubbs@…>, 6 years ago

Convert internal like to external links for BLFS packages not in
the Basic book.

Reorder some chapters.

Merge System V and systemd sections so both are always displayed
with proper attribution for system type.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/basic@20524 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.4 KB
RevLine 
[2875f488]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
[8dfc5c3]7 <!ENTITY parted-download-http "&gnu-http;/parted/parted-&parted-version;.tar.xz">
8 <!ENTITY parted-download-ftp "&gnu-ftp;/parted/parted-&parted-version;.tar.xz">
[5f1ca9f]9 <!ENTITY parted-md5sum "0247b6a7b314f8edeb618159fa95f9cb">
10 <!ENTITY parted-size "1.6 MB">
11 <!ENTITY parted-buildsize "27 MB (additional 2 MB for the tests and additional 1 MB for optional PDF and Postscript documentation)">
12 <!ENTITY parted-time "0.4 SBU (additional 0.6 SBU for the tests)">
[2875f488]13]>
14
[810a2c6]15<sect1 id="parted" xreflabel="parted-&parted-version;">
[2875f488]16 <?dbhtml filename="parted.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
[810a2c6]23 <title>parted-&parted-version;</title>
[2875f488]24
25 <indexterm zone="parted">
[810a2c6]26 <primary sortas="a-parted">Parted</primary>
[2875f488]27 </indexterm>
28
29 <sect2 role="package">
[810a2c6]30 <title>Introduction to parted</title>
[2875f488]31
[49b0f95]32 <para>
33 The <application>Parted</application> package is a disk partitioning and
34 partition resizing tool.
35 </para>
[2875f488]36
[9e629a4]37 &lfs83_checked;
[e4123d2]38
[2875f488]39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>Download (HTTP): <ulink url="&parted-download-http;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download (FTP): <ulink url="&parted-download-ftp;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download MD5 sum: &parted-md5sum;</para>
49 </listitem>
50 <listitem>
51 <para>Download size: &parted-size;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated disk space required: &parted-buildsize;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated build time: &parted-time;</para>
58 </listitem>
59 </itemizedlist>
60
[6e08e9c0]61 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
62 <itemizedlist spacing="compact">
63 <listitem>
64 <para>
65 Optional, to fix build without device mapper support:
66 <ulink url="&patch-root;/parted-&parted-version;-devmapper-1.patch"/>
67 </para>
68 </listitem>
69 </itemizedlist>
70
[2875f488]71 <bridgehead renderas="sect3">Parted Dependencies</bridgehead>
72
[5f1ca9f]73 <bridgehead renderas="sect4">Optional</bridgehead>
74 <para role="optional">
[6397333]75 <ulink url="&blfs-book;postlfs/lvm2.html">LVM2</ulink>
76 (needed for device-mapper, required if building
77 <application>udisks</application>),
78 <ulink url="&blfs-book;general/pth.html">pth</ulink>, and
79 <ulink url="&blfs-book;pst/texlive.html">texlive</ulink>
80 (or <ulink url="&blfs-book;pst/tl-installer.html">tl-installer</ulink>
[5f1ca9f]81 </para>
[6397333]82
[49b0f95]83 <para condition="html" role="usernotes">
84 User Notes: <ulink url="&blfs-wiki;/parted"/>
85 </para>
[2875f488]86 </sect2>
87
88 <sect2 role="installation">
[810a2c6]89 <title>Installation of parted</title>
[f3429309]90
[6e08e9c0]91 <para>
92 If you want to build without device mapper support, a fix is necessary:
93 </para>
94
95<screen><userinput>patch -Np1 -i ../parted-&parted-version;-devmapper-1.patch</userinput></screen>
[2875f488]96
[49b0f95]97 <para>
98 Install <application>Parted</application> by running the following
99 commands:
100 </para>
[2875f488]101
[9e629a4]102<screen><userinput>sed -i '/utsname.h/a#include &lt;sys/sysmacros.h&gt;' libparted/arch/linux.c &amp;&amp;
103
104./configure --prefix=/usr --disable-static &amp;&amp;
[9ca304a]105make &amp;&amp;
106
107make -C doc html &amp;&amp;
108makeinfo --html -o doc/html doc/parted.texi &amp;&amp;
109makeinfo --plaintext -o doc/parted.txt doc/parted.texi</userinput></screen>
110
111<screen><userinput>texi2pdf -o doc/parted.pdf doc/parted.texi &amp;&amp;
112texi2dvi -o doc/parted.dvi doc/parted.texi &amp;&amp;
113dvips -o doc/parted.ps doc/parted.dvi</userinput></screen>
[2875f488]114
[d81eda8]115 <para>If you wish to run the test suite, first remove a test that normally
[af8a78d]116 fails in BLFS (because it needs a locale C.UTF-8):</para>
[d81eda8]117
118<screen><userinput>sed -i '/t0251-gpt-unicode.sh/d' tests/Makefile</userinput></screen>
119
[cf67717]120 <para>
121 To test the results, issue: <command>make check</command>. Note that
122 many tests are skipped if not run as the <systemitem
[d81eda8]123 class="username">root</systemitem> user.
[cf67717]124 </para>
[2875f488]125
[49b0f95]126 <para>
127 Now, as the <systemitem class="username">root</systemitem> user:
128 </para>
[2875f488]129
[9ca304a]130<screen role="root"><userinput>make install &amp;&amp;
[b141cb2]131install -v -m755 -d /usr/share/doc/parted-&parted-version;/html &amp;&amp;
[9ca304a]132install -v -m644 doc/html/* \
[b141cb2]133 /usr/share/doc/parted-&parted-version;/html &amp;&amp;
[9ca304a]134install -v -m644 doc/{FAT,API,parted.{txt,html}} \
[b141cb2]135 /usr/share/doc/parted-&parted-version;</userinput></screen>
[9ca304a]136
137 <para>Install the optional PDF and Postscript documentation by issuing
138 the following command as the <systemitem class="username">root</systemitem>
139 user:</para>
140
141<screen role="root"><userinput>install -v -m644 doc/FAT doc/API doc/parted.{pdf,ps,dvi} \
[b141cb2]142 /usr/share/doc/parted-&parted-version;</userinput></screen>
[2875f488]143 </sect2>
144
145 <sect2 role="commands">
146 <title>Command Explanations</title>
147
[9e629a4]148 <para>
149 <command>sed ...</command>: Add a header to allow building with glibc-2.28
150 or later.
151 </para>
152
[49b0f95]153 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
154 href="../../xincludes/static-libraries.xml"/>
[2875f488]155
[49b0f95]156 <para>
157 <option>--disable-device-mapper</option>: This option disables device
158 mapper support. Add this parameter if you have not installed
159 <application>LVM2</application>.
160 </para>
[2875f488]161 </sect2>
162
163 <sect2 role="content">
164 <title>Contents</title>
165
166 <segmentedlist>
167 <segtitle>Installed Programs</segtitle>
[5f1ca9f]168 <segtitle>Installed Libraries</segtitle>
169 <segtitle>Installed Directories</segtitle>
[2875f488]170
171 <seglistitem>
[49b0f95]172 <seg>
173 parted and
174 partprobe
175 </seg>
[5f1ca9f]176 <seg>
177 libparted.so and
178 libparted-fs-resize.so</seg>
179 <seg>
180 /usr/include/parted and
181 /usr/share/doc/parted-&parted-version;</seg>
[2875f488]182 </seglistitem>
183 </segmentedlist>
184
185 <variablelist>
186 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
187 <?dbfo list-presentation="list"?>
188 <?dbhtml list-presentation="table"?>
189
190 <varlistentry id="parted-prog">
191 <term><command>parted</command></term>
192 <listitem>
193 <para>is a partition manipulation program.</para>
194 <indexterm zone="parted parted-prog">
195 <primary sortas="b-parted">parted</primary>
196 </indexterm>
197 </listitem>
198 </varlistentry>
199
200 <varlistentry id="partprobe">
201 <term><command>partprobe</command></term>
202 <listitem>
203 <para>informs the OS of partition table changes.</para>
204 <indexterm zone="parted partprobe">
205 <primary sortas="b-partprobe">partprobe</primary>
206 </indexterm>
207 </listitem>
208 </varlistentry>
209
210 <varlistentry id="libparted">
[49b0f95]211 <term><filename class='libraryfile'>libparted.so</filename></term>
[2875f488]212 <listitem>
[49b0f95]213 <para>
214 contains the <application>Parted</application> API functions.
215 </para>
[2875f488]216 <indexterm zone="parted libparted">
[49b0f95]217 <primary sortas="c-libparted">libparted.so</primary>
[2875f488]218 </indexterm>
219 </listitem>
220 </varlistentry>
221 </variablelist>
222 </sect2>
223</sect1>
Note: See TracBrowser for help on using the repository browser.