source: postlfs/filesystems/parted.xml@ d47153e

basic
Last change on this file since d47153e was 82f8b2c, checked in by Bruce Dubbs <bdubbs@…>, 5 years ago

Wroding change in basic book's parted

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

  • Property mode set to 100644
File size: 7.7 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 <!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">
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)">
13]>
14
15<sect1 id="parted" xreflabel="parted-&parted-version;">
16 <?dbhtml filename="parted.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>parted-&parted-version;</title>
24
25 <indexterm zone="parted">
26 <primary sortas="a-parted">Parted</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to parted</title>
31
32 <para>
33 The <application>Parted</application> package is a disk partitioning and
34 partition resizing tool.
35 </para>
36
37 &lfs83_checked;
38
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
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
71 <bridgehead renderas="sect3">Parted Dependencies</bridgehead>
72
73 <bridgehead renderas="sect4">Optional</bridgehead>
74 <para role="optional">
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>
81 </para>
82
83 <para condition="html" role="usernotes">
84 User Notes: <ulink url="&blfs-wiki;/parted"/>
85 </para>
86 </sect2>
87
88 <sect2 role="installation">
89 <title>Installation of parted</title>
90
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>
96
97 <para>
98 Install <application>Parted</application> by running the following
99 commands:
100 </para>
101
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 --disable-device-mapper &amp;&amp;
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 <para>If you have <ulink url="&blfs-book;pst/texlive.html">texlive</ulink>
112 installed and wish to create PDF and Postcript documentation issue the
113 following commands:</para>
114
115<screen><userinput>texi2pdf -o doc/parted.pdf doc/parted.texi &amp;&amp;
116texi2dvi -o doc/parted.dvi doc/parted.texi &amp;&amp;
117dvips -o doc/parted.ps doc/parted.dvi</userinput></screen>
118
119 <para>If you wish to run the test suite, first remove a test that normally
120 fails in BLFS (because it needs a locale C.UTF-8):</para>
121
122<screen><userinput>sed -i '/t0251-gpt-unicode.sh/d' tests/Makefile</userinput></screen>
123
124 <para>
125 To test the results, issue: <command>make check</command>. Note that
126 many tests are skipped if not run as the <systemitem
127 class="username">root</systemitem> user.
128 </para>
129
130 <para>
131 Now, as the <systemitem class="username">root</systemitem> user:
132 </para>
133
134<screen role="root"><userinput>make install &amp;&amp;
135install -v -m755 -d /usr/share/doc/parted-&parted-version;/html &amp;&amp;
136install -v -m644 doc/html/* \
137 /usr/share/doc/parted-&parted-version;/html &amp;&amp;
138install -v -m644 doc/{FAT,API,parted.{txt,html}} \
139 /usr/share/doc/parted-&parted-version;</userinput></screen>
140
141 <para>If you generated the optional PDF and Postscript documentation
142 above, intstall the documentation by issuing the following command as the
143 <systemitem class="username">root</systemitem> user:</para>
144
145<screen role="root"><userinput>install -v -m644 doc/FAT doc/API doc/parted.{pdf,ps,dvi} \
146 /usr/share/doc/parted-&parted-version;</userinput></screen>
147 </sect2>
148
149 <sect2 role="commands">
150 <title>Command Explanations</title>
151
152 <para>
153 <command>sed ...</command>: Add a header to allow building with glibc-2.28
154 or later.
155 </para>
156
157 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
158 href="../../xincludes/static-libraries.xml"/>
159
160 <para>
161 <option>--disable-device-mapper</option>: This option disables device
162 mapper support. Add this parameter if you have not installed
163 <application>LVM2</application>.
164 </para>
165 </sect2>
166
167 <sect2 role="content">
168 <title>Contents</title>
169
170 <segmentedlist>
171 <segtitle>Installed Programs</segtitle>
172 <segtitle>Installed Libraries</segtitle>
173 <segtitle>Installed Directories</segtitle>
174
175 <seglistitem>
176 <seg>
177 parted and
178 partprobe
179 </seg>
180 <seg>
181 libparted.so and
182 libparted-fs-resize.so</seg>
183 <seg>
184 /usr/include/parted and
185 /usr/share/doc/parted-&parted-version;</seg>
186 </seglistitem>
187 </segmentedlist>
188
189 <variablelist>
190 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
191 <?dbfo list-presentation="list"?>
192 <?dbhtml list-presentation="table"?>
193
194 <varlistentry id="parted-prog">
195 <term><command>parted</command></term>
196 <listitem>
197 <para>is a partition manipulation program.</para>
198 <indexterm zone="parted parted-prog">
199 <primary sortas="b-parted">parted</primary>
200 </indexterm>
201 </listitem>
202 </varlistentry>
203
204 <varlistentry id="partprobe">
205 <term><command>partprobe</command></term>
206 <listitem>
207 <para>informs the OS of partition table changes.</para>
208 <indexterm zone="parted partprobe">
209 <primary sortas="b-partprobe">partprobe</primary>
210 </indexterm>
211 </listitem>
212 </varlistentry>
213
214 <varlistentry id="libparted">
215 <term><filename class='libraryfile'>libparted.so</filename></term>
216 <listitem>
217 <para>
218 contains the <application>Parted</application> API functions.
219 </para>
220 <indexterm zone="parted libparted">
221 <primary sortas="c-libparted">libparted.so</primary>
222 </indexterm>
223 </listitem>
224 </varlistentry>
225 </variablelist>
226 </sect2>
227</sect1>
Note: See TracBrowser for help on using the repository browser.