source: postlfs/filesystems/parted.xml@ aed3e6ec

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since aed3e6ec was aed3e6ec, checked in by Bruce Dubbs <bdubbs@…>, 9 years ago

Partial update of KDE to 14.12.2
Lots of tagging

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@15561 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.3 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
8 "http://ftp.gnu.org/gnu/parted/parted-&parted-version;.tar.xz">
9 <!ENTITY parted-download-ftp " ">
10 <!ENTITY parted-md5sum "0247b6a7b314f8edeb618159fa95f9cb">
11 <!ENTITY parted-size "1.6 MB">
12 <!ENTITY parted-buildsize "27 MB (additional 2 MB for the tests and additional 1 MB for optional PDF and Postscript documentation)">
13 <!ENTITY parted-time "0.4 SBU (additional 0.6 SBU for the tests)">
14]>
15
16<sect1 id="parted" xreflabel="parted-&parted-version;">
17 <?dbhtml filename="parted.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>parted-&parted-version;</title>
25
26 <indexterm zone="parted">
27 <primary sortas="a-parted">Parted</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to parted</title>
32
33 <para>
34 The <application>Parted</application> package is a disk partitioning and
35 partition resizing tool.
36 </para>
37
38 &lfs77_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>Download (HTTP): <ulink url="&parted-download-http;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download (FTP): <ulink url="&parted-download-ftp;"/></para>
47 </listitem>
48 <listitem>
49 <para>Download MD5 sum: &parted-md5sum;</para>
50 </listitem>
51 <listitem>
52 <para>Download size: &parted-size;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated disk space required: &parted-buildsize;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated build time: &parted-time;</para>
59 </listitem>
60 </itemizedlist>
61
62 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
63 <itemizedlist spacing="compact">
64 <listitem>
65 <para>
66 Optional, to fix build without device mapper support:
67 <ulink url="&patch-root;/parted-&parted-version;-devmapper-1.patch"/>
68 </para>
69 </listitem>
70 </itemizedlist>
71
72 <bridgehead renderas="sect3">Parted Dependencies</bridgehead>
73
74 <bridgehead renderas="sect4">Recommended</bridgehead>
75 <para role="recommended">
76 <xref linkend="lvm2"/> (device-mapper, required if building
77 <application>udisks</application>)
78 </para>
79
80 <bridgehead renderas="sect4">Optional</bridgehead>
81 <para role="optional">
82 <xref linkend="pth"/>
83 <xref linkend="texlive"/> (or <xref linkend="tl-installer"/>)
84 </para>
85
86 <para condition="html" role="usernotes">
87 User Notes: <ulink url="&blfs-wiki;/parted"/>
88 </para>
89 </sect2>
90
91 <sect2 role="installation">
92 <title>Installation of parted</title>
93
94 <para>
95 If you want to build without device mapper support, a fix is necessary:
96 </para>
97
98<screen><userinput>patch -Np1 -i ../parted-&parted-version;-devmapper-1.patch</userinput></screen>
99
100 <para>
101 Install <application>Parted</application> by running the following
102 commands:
103 </para>
104
105<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
106make &amp;&amp;
107
108make -C doc html &amp;&amp;
109makeinfo --html -o doc/html doc/parted.texi &amp;&amp;
110makeinfo --plaintext -o doc/parted.txt doc/parted.texi</userinput></screen>
111
112 <para>If you have <xref linkend="texlive"/> installed and wish to create
113 PDF and Postcript documentation issue the 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>Install the optional PDF and Postscript documentation by issuing
142 the following command as the <systemitem class="username">root</systemitem>
143 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 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
153 href="../../xincludes/static-libraries.xml"/>
154
155 <para>
156 <option>--disable-device-mapper</option>: This option disables device
157 mapper support. Add this parameter if you have not installed
158 <application>LVM2</application>.
159 </para>
160 </sect2>
161
162 <sect2 role="content">
163 <title>Contents</title>
164
165 <segmentedlist>
166 <segtitle>Installed Programs</segtitle>
167 <segtitle>Installed Libraries</segtitle>
168 <segtitle>Installed Directories</segtitle>
169
170 <seglistitem>
171 <seg>
172 parted and
173 partprobe
174 </seg>
175 <seg>
176 libparted.so and
177 libparted-fs-resize.so</seg>
178 <seg>
179 /usr/include/parted and
180 /usr/share/doc/parted-&parted-version;</seg>
181 </seglistitem>
182 </segmentedlist>
183
184 <variablelist>
185 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
186 <?dbfo list-presentation="list"?>
187 <?dbhtml list-presentation="table"?>
188
189 <varlistentry id="parted-prog">
190 <term><command>parted</command></term>
191 <listitem>
192 <para>is a partition manipulation program.</para>
193 <indexterm zone="parted parted-prog">
194 <primary sortas="b-parted">parted</primary>
195 </indexterm>
196 </listitem>
197 </varlistentry>
198
199 <varlistentry id="partprobe">
200 <term><command>partprobe</command></term>
201 <listitem>
202 <para>informs the OS of partition table changes.</para>
203 <indexterm zone="parted partprobe">
204 <primary sortas="b-partprobe">partprobe</primary>
205 </indexterm>
206 </listitem>
207 </varlistentry>
208
209 <varlistentry id="libparted">
210 <term><filename class='libraryfile'>libparted.so</filename></term>
211 <listitem>
212 <para>
213 contains the <application>Parted</application> API functions.
214 </para>
215 <indexterm zone="parted libparted">
216 <primary sortas="c-libparted">libparted.so</primary>
217 </indexterm>
218 </listitem>
219 </varlistentry>
220 </variablelist>
221 </sect2>
222</sect1>
Note: See TracBrowser for help on using the repository browser.