source: chapter06/e2fsprogs.xml@ 69878ea

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 12.2 12.2-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/loongarch-12.2 xry111/mips64el xry111/multilib xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 69878ea was 8250be1, checked in by Matthew Burgess <matthew@…>, 20 years ago

Brought e2fsprogs instructions inline with upstream recommendations (Bill Maltby - bug #577).

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3814 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 11.7 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[a001133]6<sect1 id="ch-system-e2fsprogs" xreflabel="E2fsprogs" role="wrap">
[673b0d8]7<title>E2fsprogs-&e2fsprogs-version;</title>
8<?dbhtml filename="e2fsprogs.html"?>
9
10<indexterm zone="ch-system-e2fsprogs"><primary sortas="a-E2fsprogs">E2fsprogs</primary></indexterm>
[6370fa6]11
[a001133]12<sect2 role="package"><title/>
[5888299]13<para>The E2fsprogs package contains the utilities for handling the ext2
[ab3b93b]14file system. It also supports the ext3 journaling file system.</para>
[5888299]15
[a001133]16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
[8250be1]19<seglistitem><seg>0.6 SBU</seg><seg>4.9 MB</seg></seglistitem>
[a001133]20</segmentedlist>
[673b0d8]21
[a001133]22<segmentedlist>
23<segtitle>E2fsprogs installation depends on</segtitle>
24<seglistitem><seg>Bash, Binutils, Coreutils,
25Diffutils, Gawk, GCC, Gettext, Glibc, Grep, Make, Sed, Texinfo</seg></seglistitem>
26</segmentedlist>
27</sect2>
[3554fa3a]28
[a001133]29<sect2 role="installation">
[73aedd1d]30<title>Installation of E2fsprogs</title>
31
[8250be1]32<para>It is recommended to build E2fsprogs in a subdirectory of the source tree:
33</para>
34
35<screen><userinput>mkdir build
36cd build</userinput></screen>
37
[73aedd1d]38<para>Prepare E2fsprogs for compilation:</para>
39
[8250be1]40<screen><userinput>../configure --prefix=/usr --with-root-prefix="" \
[9dfc02f]41 --enable-elf-shlibs --disable-evms</userinput></screen>
[73aedd1d]42
43<para>The meaning of the configure options:</para>
44
[df8334f]45<variablelist>
46<varlistentry>
[e63529b]47<term><parameter>--with-root-prefix=""</parameter></term>
48<listitem><para>Certain programs (such as the <command>e2fsck</command>
49program) are considered essential programs.
[73aedd1d]50When, for example, <filename class="directory">/usr</filename> isn't
[a195a6c]51mounted, these essential programs have to be available. They belong in
[73aedd1d]52directories like <filename class="directory">/lib</filename> and
53<filename class="directory">/sbin</filename>. If this option isn't passed
54to E2fsprogs's configure, the programs are placed in the
55<filename class="directory">/usr</filename> directory, which is not what we
56want.</para></listitem>
[df8334f]57</varlistentry>
[73aedd1d]58
[df8334f]59<varlistentry>
[e63529b]60<term><parameter>--enable-elf-shlibs</parameter></term>
[df8334f]61<listitem><para>This creates
[673b0d8]62the shared libraries which some programs in this package use.</para></listitem>
[df8334f]63</varlistentry>
[8250be1]64
65<varlistentry>
66<term><parameter>--disable-evms</parameter></term>
67<listitem><para>This disables the building of the Enterprise Volume Management
68System (EVMS) plugin. This plugin is not up-to-date with the latest EVMS
69internal interfaces and EVMS is not installed as part of a base LFS system, so
70the plugin is not required. See the
71<ulink url="http://evms.sourceforge.net/">EVMS homepage</ulink> for more
72information regarding EVMS itself.</para></listitem>
73</varlistentry>
[df8334f]74</variablelist>
[73aedd1d]75
76<para>Compile the package:</para>
77
78<screen><userinput>make</userinput></screen>
79
[9dfc02f]80<para>To test the results, issue:
81<userinput>make check</userinput>.</para>
[73aedd1d]82
83<para>Install most of the package:</para>
84
85<screen><userinput>make install</userinput></screen>
86
[28501c7]87<para>Also install the shared libraries:</para>
[73aedd1d]88
89<screen><userinput>make install-libs</userinput></screen>
90
91</sect2>
92
[6370fa6]93
[5888299]94
[c6cb3aa]95<sect2 id="contents-e2fsprogs" role="content"><title>Contents of E2fsprogs</title>
[673b0d8]96
[c6cb3aa]97<segmentedlist>
98<segtitle>Installed programs</segtitle>
99<segtitle>Installed libraries</segtitle>
100<seglistitem><seg>badblocks, blkid, chattr,
[673b0d8]101compile_et, debugfs, dumpe2fs, e2fsck, e2image, e2label, findfs, fsck,
102fsck.ext2, fsck.ext3, logsave, lsattr, mk_cmds, mke2fs, mkfs.ext2, mkfs.ext3,
[c6cb3aa]103mklost+found, resize2fs, tune2fs and uuidgen.</seg>
104<seg>libblkid.[a,so], libcom_err.[a,so], libe2p.[a,so], libext2fs.[a,so], libss.[a,so] and
105libuuid.[a,so]</seg></seglistitem>
106</segmentedlist>
[673b0d8]107
[c6cb3aa]108<variablelist><title>Short descriptions</title>
[673b0d8]109
[b8a819f]110<varlistentry id="badblocks">
111<term><command>badblocks</command></term>
[c6cb3aa]112<listitem>
[673b0d8]113<indexterm zone="ch-system-e2fsprogs badblocks"><primary sortas="b-badblocks">badblocks</primary></indexterm>
[c6cb3aa]114<para>searches a device (usually a disk partition) for bad blocks.</para>
115</listitem>
116</varlistentry>
[673b0d8]117
[b8a819f]118<varlistentry id="blkid">
119<term><command>blkid</command></term>
[c6cb3aa]120<listitem>
[673b0d8]121<indexterm zone="ch-system-e2fsprogs blkid"><primary sortas="b-blkid">blkid</primary></indexterm>
[c6cb3aa]122<para>is a command line utility to locate and print block device attributes.</para>
123</listitem>
124</varlistentry>
[673b0d8]125
[b8a819f]126<varlistentry id="chattr">
127<term><command>chattr</command></term>
[c6cb3aa]128<listitem>
[673b0d8]129<indexterm zone="ch-system-e2fsprogs chattr"><primary sortas="b-chattr">chattr</primary></indexterm>
[c6cb3aa]130<para>changes the attributes of files on a second extended (ext2) file system, and
131also ext3 file systems, the journaling version of ext2 file systems.</para>
132</listitem>
133</varlistentry>
134
[b8a819f]135<varlistentry id="compile_et">
136<term><command>compile_et</command></term>
[c6cb3aa]137<listitem>
[673b0d8]138<indexterm zone="ch-system-e2fsprogs compile_et"><primary sortas="b-compile_et">compile_et</primary></indexterm>
[c6cb3aa]139<para>is an error table compiler. It
[673b0d8]140converts a table of error-code names and messages into a C source file
[e63529b]141suitable for use with the <filename class="libraryfile">com_err</filename> library.</para>
[c6cb3aa]142</listitem>
143</varlistentry>
[673b0d8]144
[b8a819f]145<varlistentry id="debugfs">
146<term><command>debugfs</command></term>
[c6cb3aa]147<listitem>
[673b0d8]148<indexterm zone="ch-system-e2fsprogs debugfs"><primary sortas="b-debugfs">debugfs</primary></indexterm>
[c6cb3aa]149<para>is a file system debugger. It can be
[673b0d8]150used to examine and change the state of an ext2 file system.</para>
[c6cb3aa]151</listitem>
152</varlistentry>
[673b0d8]153
[b8a819f]154<varlistentry id="dumpe2fs">
155<term><command>dumpe2fs</command></term>
[c6cb3aa]156<listitem>
[673b0d8]157<indexterm zone="ch-system-e2fsprogs dumpe2fs"><primary sortas="b-dumpe2fs">dumpe2fs</primary></indexterm>
[c6cb3aa]158<para>prints the super block and blocks group
[673b0d8]159information for the file system present on a given device.</para>
[c6cb3aa]160</listitem>
161</varlistentry>
[673b0d8]162
[b8a819f]163<varlistentry id="e2fsck">
164<term><command>e2fsck</command></term>
[c6cb3aa]165<listitem>
[673b0d8]166<indexterm zone="ch-system-e2fsprogs e2fsck"><primary sortas="b-e2fsck">e2fsck</primary></indexterm>
[c6cb3aa]167<para>is used to check, and optionally repair,
[673b0d8]168second extended (ext2) file systems, and also ext3 file systems.</para>
[c6cb3aa]169</listitem>
170</varlistentry>
[673b0d8]171
[b8a819f]172<varlistentry id="e2image">
173<term><command>e2image</command></term>
[c6cb3aa]174<listitem>
[673b0d8]175<indexterm zone="ch-system-e2fsprogs e2image"><primary sortas="b-e2image">e2image</primary></indexterm>
[c6cb3aa]176<para>is used to save critical ext2 file system data to a file.</para>
177</listitem>
178</varlistentry>
[673b0d8]179
[b8a819f]180<varlistentry id="e2label">
181<term><command>e2label</command></term>
[c6cb3aa]182<listitem>
[673b0d8]183<indexterm zone="ch-system-e2fsprogs e2label"><primary sortas="b-e2label">e2label</primary></indexterm>
[c6cb3aa]184<para>will display or change the file system
[673b0d8]185label on the ext2 file system present on a given device.</para>
[c6cb3aa]186</listitem>
187</varlistentry>
[673b0d8]188
[b8a819f]189<varlistentry id="findfs">
190<term><command>findfs</command></term>
[c6cb3aa]191<listitem>
[673b0d8]192<indexterm zone="ch-system-e2fsprogs findfs"><primary sortas="b-findfs">findfs</primary></indexterm>
[c6cb3aa]193<para>finds a file system by label or UUID (Universally Unique Identifier).</para>
194</listitem>
195</varlistentry>
[673b0d8]196
[b8a819f]197<varlistentry id="fsck">
198<term><command>fsck</command></term>
[c6cb3aa]199<listitem>
[673b0d8]200<indexterm zone="ch-system-e2fsprogs fsck"><primary sortas="b-fsck">fsck</primary></indexterm>
[c6cb3aa]201<para>is used to check, and optionally repair, file systems. By default it checks the
202file systems listed in <filename>/etc/fstab</filename></para>
203</listitem>
204</varlistentry>
205
[b8a819f]206<varlistentry id="logsave">
207<term><command>logsave</command></term>
[c6cb3aa]208<listitem>
[673b0d8]209<indexterm zone="ch-system-e2fsprogs logsave"><primary sortas="b-logsave">logsave</primary></indexterm>
[c6cb3aa]210<para>saves the output of a command in a log file.</para>
211</listitem>
212</varlistentry>
[673b0d8]213
[b8a819f]214<varlistentry id="lsattr">
215<term><command>lsattr</command></term>
[c6cb3aa]216<listitem>
[673b0d8]217<indexterm zone="ch-system-e2fsprogs lsattr"><primary sortas="b-lsattr">lsattr</primary></indexterm>
[c6cb3aa]218<para>lists the attributes of files on a second extended file system.</para>
219</listitem>
220</varlistentry>
[673b0d8]221
[b8a819f]222<varlistentry id="mk_cmds">
223<term><command>mk_cmds</command></term>
[c6cb3aa]224<listitem>
[673b0d8]225<indexterm zone="ch-system-e2fsprogs mk_cmds"><primary sortas="b-mk_cmds">mk_cmds</primary></indexterm>
[c6cb3aa]226<para>converts a table of command names
[673b0d8]227and help messages into a C source file suitable for use with the
[e63529b]228<filename class="libraryfile">libss</filename> subsystem library.</para>
[c6cb3aa]229</listitem>
230</varlistentry>
[673b0d8]231
[b8a819f]232<varlistentry id="mke2fs">
233<term><command>mke2fs</command></term>
[c6cb3aa]234<listitem>
[673b0d8]235<indexterm zone="ch-system-e2fsprogs mke2fs"><primary sortas="b-mke2fs">mke2fs</primary></indexterm>
[c6cb3aa]236<para>is used to create a second extended file system on the given device.</para>
237</listitem>
238</varlistentry>
[673b0d8]239
[b8a819f]240<varlistentry id="mklost-found">
241<term><command>mklost+found</command></term>
[c6cb3aa]242<listitem>
[673b0d8]243<indexterm zone="ch-system-e2fsprogs mklost-found"><primary sortas="b-mklost+found">mklost+found</primary></indexterm>
[c6cb3aa]244<para>is used to create a
[e63529b]245<filename class="directory">lost+found</filename> directory on a second extended file system.
[673b0d8]246It pre-allocates disk blocks to this directory to lighten the task of e2fsck.</para>
[c6cb3aa]247</listitem>
248</varlistentry>
[673b0d8]249
[b8a819f]250<varlistentry id="resize2fs">
251<term><command>resize2fs</command></term>
[c6cb3aa]252<listitem>
[673b0d8]253<indexterm zone="ch-system-e2fsprogs resize2fs"><primary sortas="b-resize2fs">resize2fs</primary></indexterm>
[c6cb3aa]254<para>can be used to enlarge or shrink an ext2 file system.</para>
255</listitem>
256</varlistentry>
[673b0d8]257
[b8a819f]258<varlistentry id="tune2fs">
259<term><command>tune2fs</command></term>
[c6cb3aa]260<listitem>
[673b0d8]261<indexterm zone="ch-system-e2fsprogs tune2fs"><primary sortas="b-tune2fs">tune2fs</primary></indexterm>
[c6cb3aa]262<para>is used adjust tunable file system
[673b0d8]263parameters on a second extended file system.</para>
[c6cb3aa]264</listitem>
265</varlistentry>
[673b0d8]266
[b8a819f]267<varlistentry id="uuidgen">
268<term><command>uuidgen</command></term>
[c6cb3aa]269<listitem>
[673b0d8]270<indexterm zone="ch-system-e2fsprogs uuidgen"><primary sortas="b-uuidgen">uuidgen</primary></indexterm>
[c6cb3aa]271<para>creates new UUID. Each new UUID can reasonably be considered unique
[673b0d8]272among all UUIDs created, on the local system and on other systems, in the
273past and in the future.</para>
[c6cb3aa]274</listitem>
275</varlistentry>
[673b0d8]276
[b8a819f]277<varlistentry id="libblkid">
[e63529b]278<term><filename class="libraryfile">libblkid</filename></term>
[c6cb3aa]279<listitem>
[673b0d8]280<indexterm zone="ch-system-e2fsprogs libblkid"><primary sortas="c-libblkid">libblkid</primary></indexterm>
[c6cb3aa]281<para>contains routines for device identification and token extraction.</para>
282</listitem>
283</varlistentry>
[673b0d8]284
[b8a819f]285<varlistentry id="libcom_err">
[e63529b]286<term><filename class="libraryfile">libcom_err</filename></term>
[c6cb3aa]287<listitem>
[673b0d8]288<indexterm zone="ch-system-e2fsprogs libcom_err"><primary sortas="c-libcom_err">libcom_err</primary></indexterm>
[c6cb3aa]289<para>is the common error display routine.</para>
290</listitem>
291</varlistentry>
[673b0d8]292
[b8a819f]293<varlistentry id="libe2p">
[e63529b]294<term><filename class="libraryfile">libe2p</filename></term>
[c6cb3aa]295<listitem>
[673b0d8]296<indexterm zone="ch-system-e2fsprogs libe2p"><primary sortas="c-libe2p">libe2p</primary></indexterm>
[c6cb3aa]297<para>is used by dumpe2fs, chattr, and lsattr.</para>
298</listitem>
299</varlistentry>
[673b0d8]300
[b8a819f]301<varlistentry id="libext2fs">
[e63529b]302<term><filename class="libraryfile">libext2fs</filename></term>
[c6cb3aa]303<listitem>
[673b0d8]304<indexterm zone="ch-system-e2fsprogs libext2fs"><primary sortas="c-libext2fs">libext2fs</primary></indexterm>
[c6cb3aa]305<para>contains routines to enable user-level
[673b0d8]306programs to manipulate an ext2 file system.</para>
[c6cb3aa]307</listitem>
308</varlistentry>
[673b0d8]309
[b8a819f]310<varlistentry id="libss">
[e63529b]311<term><filename class="libraryfile">libss</filename></term>
[c6cb3aa]312<listitem>
[673b0d8]313<indexterm zone="ch-system-e2fsprogs libss"><primary sortas="c-libss">libss</primary></indexterm>
[e63529b]314<para>is used by <command>debugfs</command>.</para>
[c6cb3aa]315</listitem>
316</varlistentry>
[673b0d8]317
[b8a819f]318<varlistentry id="libuuid">
[e63529b]319<term><filename class="libraryfile">libuuid</filename></term>
[c6cb3aa]320<listitem>
[673b0d8]321<indexterm zone="ch-system-e2fsprogs libuuid"><primary sortas="c-libuuid">libuuid</primary></indexterm>
[c6cb3aa]322<para>contains routines for generating unique
[673b0d8]323identifiers for objects that may be accessible beyond the local system.</para>
[c6cb3aa]324</listitem>
325</varlistentry>
326</variablelist>
[673b0d8]327
328</sect2>
329
330</sect1>
Note: See TracBrowser for help on using the repository browser.