e2fsprogs.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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. ]>
  6. <sect1 id="ch-system-e2fsprogs" xreflabel="E2fsprogs">
  7. <title>E2fsprogs-&e2fsprogs-version;</title>
  8. <?dbhtml filename="e2fsprogs.html"?>
  9. <indexterm zone="ch-system-e2fsprogs"><primary sortas="a-E2fsprogs">E2fsprogs</primary></indexterm>
  10. <para>The E2fsprogs package contains the utilities for handling the ext2
  11. file system. It also supports the ext3 journaling file system.</para>
  12. <screen>&buildtime; 0.6 SBU
  13. &diskspace; 48.4 MB</screen>
  14. <para>E2fsprogs installation depends on: Bash, Binutils, Coreutils,
  15. Diffutils, Gawk, GCC, Gettext, Glibc, Grep, Make, Sed, Texinfo.</para>
  16. <sect2>
  17. <title>Installation of E2fsprogs</title>
  18. <para>It is recommended to build E2fsprogs outside of the
  19. source tree:</para>
  20. <screen><userinput>mkdir ../e2fsprogs-build
  21. cd ../e2fsprogs-build</userinput></screen>
  22. <para>Prepare E2fsprogs for compilation:</para>
  23. <screen><userinput>../e2fsprogs-&e2fsprogs-version;/configure --prefix=/usr --with-root-prefix="" \
  24. --enable-elf-shlibs</userinput></screen>
  25. <para>The meaning of the configure options:</para>
  26. <itemizedlist>
  27. <listitem><para><userinput>--with-root-prefix=""</userinput>: Certain
  28. programs (such as the e2fsck program) are considered essential programs.
  29. When, for example, <filename class="directory">/usr</filename> isn't
  30. mounted, these essential programs have to be available. They belong in
  31. directories like <filename class="directory">/lib</filename> and
  32. <filename class="directory">/sbin</filename>. If this option isn't passed
  33. to E2fsprogs's configure, the programs are placed in the
  34. <filename class="directory">/usr</filename> directory, which is not what we
  35. want.</para></listitem>
  36. <listitem><para><userinput>--enable-elf-shlibs</userinput>: This creates
  37. the shared libraries which some programs in this package use.</para></listitem>
  38. </itemizedlist>
  39. <para>Compile the package:</para>
  40. <screen><userinput>make</userinput></screen>
  41. <para>If you to test the results, first make sure an mtab file
  42. exists with <userinput>touch /etc/mtab</userinput> to prevent some sixty tests
  43. from failing, and (if it doesn't already exist) fake the presence of an old
  44. pager with <userinput>ln -s /tools/bin/cat /bin/more</userinput> to prevent one
  45. test from failing, then issue: <userinput>make check</userinput>.</para>
  46. <para>Install most of the package:</para>
  47. <screen><userinput>make install</userinput></screen>
  48. <para>Also install also the shared libraries:</para>
  49. <screen><userinput>make install-libs</userinput></screen>
  50. </sect2>
  51. <sect2 id="contents-e2fsprogs"><title>Contents of E2fsprogs</title>
  52. <para><emphasis>Installed programs</emphasis>: badblocks, blkid, chattr,
  53. compile_et, debugfs, dumpe2fs, e2fsck, e2image, e2label, findfs, fsck,
  54. fsck.ext2, fsck.ext3, logsave, lsattr, mk_cmds, mke2fs, mkfs.ext2, mkfs.ext3,
  55. mklost+found, resize2fs, tune2fs and uuidgen.</para>
  56. <para><emphasis>Installed libraries</emphasis>: libblkid.[a,so],
  57. libcom_err.[a,so], libe2p.[a,so], libext2fs.[a,so], libss.[a,so] and
  58. libuuid.[a,so]</para>
  59. </sect2>
  60. <sect2><title>Short descriptions</title>
  61. <indexterm zone="ch-system-e2fsprogs badblocks"><primary sortas="b-badblocks">badblocks</primary></indexterm>
  62. <para id="badblocks"><command>badblocks</command> searches a device (usually a disk
  63. partition) for bad blocks.</para>
  64. <indexterm zone="ch-system-e2fsprogs blkid"><primary sortas="b-blkid">blkid</primary></indexterm>
  65. <para id="blkid"><command>blkid</command> is a command line utility to locate and
  66. print block device attributes.</para>
  67. <indexterm zone="ch-system-e2fsprogs chattr"><primary sortas="b-chattr">chattr</primary></indexterm>
  68. <para id="chattr"><command>chattr</command> changes the attributes of files on a
  69. second extended (ext2) file system, and also ext3 file systems, the journaling version of ext2 file systems.</para>
  70. <indexterm zone="ch-system-e2fsprogs compile_et"><primary sortas="b-compile_et">compile_et</primary></indexterm>
  71. <para id="compile_et"><command>compile_et</command> is an error table compiler. It
  72. converts a table of error-code names and messages into a C source file
  73. suitable for use with the com_err library.</para>
  74. <indexterm zone="ch-system-e2fsprogs debugfs"><primary sortas="b-debugfs">debugfs</primary></indexterm>
  75. <para id="debugfs"><command>debugfs</command> is a file system debugger. It can be
  76. used to examine and change the state of an ext2 file system.</para>
  77. <indexterm zone="ch-system-e2fsprogs dumpe2fs"><primary sortas="b-dumpe2fs">dumpe2fs</primary></indexterm>
  78. <para id="dumpe2fs"><command>dumpe2fs</command> prints the super block and blocks group
  79. information for the file system present on a given device.</para>
  80. <indexterm zone="ch-system-e2fsprogs e2fsck"><primary sortas="b-e2fsck">e2fsck</primary></indexterm>
  81. <para id="e2fsck"><command>e2fsck</command> is used to check, and optionally repair,
  82. second extended (ext2) file systems, and also ext3 file systems.</para>
  83. <indexterm zone="ch-system-e2fsprogs e2image"><primary sortas="b-e2image">e2image</primary></indexterm>
  84. <para id="e2image"><command>e2image</command> is used to save critical ext2 file system
  85. data to a file.</para>
  86. <indexterm zone="ch-system-e2fsprogs e2label"><primary sortas="b-e2label">e2label</primary></indexterm>
  87. <para id="e2label"><command>e2label</command> will display or change the file system
  88. label on the ext2 file system present on a given device.</para>
  89. <indexterm zone="ch-system-e2fsprogs findfs"><primary sortas="b-findfs">findfs</primary></indexterm>
  90. <para id="findfs"><command>findfs</command> finds a file system by label or UUID (Universally Unique Identifier).</para>
  91. <indexterm zone="ch-system-e2fsprogs fsck"><primary sortas="b-fsck">fsck</primary></indexterm>
  92. <para id="fsck"><command>fsck</command> is used to check, and optionally repair,
  93. file systems. By default it checks the file systems listed in
  94. <filename>/etc/fstab</filename></para>
  95. <indexterm zone="ch-system-e2fsprogs logsave"><primary sortas="b-logsave">logsave</primary></indexterm>
  96. <para id="logsave"><command>logsave</command> saves the output of a command in a log file.</para>
  97. <indexterm zone="ch-system-e2fsprogs lsattr"><primary sortas="b-lsattr">lsattr</primary></indexterm>
  98. <para id="lsattr"><command>lsattr</command> lists the attributes of files on a second
  99. extended file system.</para>
  100. <indexterm zone="ch-system-e2fsprogs mk_cmds"><primary sortas="b-mk_cmds">mk_cmds</primary></indexterm>
  101. <para id="mk_cmds"><command>mk_cmds</command> converts a table of command names
  102. and help messages into a C source file suitable for use with the
  103. <filename>libss</filename> subsystem library.</para>
  104. <indexterm zone="ch-system-e2fsprogs mke2fs"><primary sortas="b-mke2fs">mke2fs</primary></indexterm>
  105. <para id="mke2fs"><command>mke2fs</command> is used to create a second extended
  106. file system on the given device.</para>
  107. <indexterm zone="ch-system-e2fsprogs mklost-found"><primary sortas="b-mklost+found">mklost+found</primary></indexterm>
  108. <para id="mklost-found"><command>mklost+found</command> is used to create a
  109. <filename>lost+found</filename> directory on a second extended file system.
  110. It pre-allocates disk blocks to this directory to lighten the task of e2fsck.</para>
  111. <indexterm zone="ch-system-e2fsprogs resize2fs"><primary sortas="b-resize2fs">resize2fs</primary></indexterm>
  112. <para id="resize2fs"><command>resize2fs</command> can be used to enlarge or shrink an
  113. ext2 file system.</para>
  114. <indexterm zone="ch-system-e2fsprogs tune2fs"><primary sortas="b-tune2fs">tune2fs</primary></indexterm>
  115. <para id="tune2fs"><command>tune2fs</command> is used adjust tunable file system
  116. parameters on a second extended file system.</para>
  117. <indexterm zone="ch-system-e2fsprogs uuidgen"><primary sortas="b-uuidgen">uuidgen</primary></indexterm>
  118. <para id="uuidgen"><command>uuidgen</command> creates new
  119. UUID. Each new UUID can reasonably be considered unique
  120. among all UUIDs created, on the local system and on other systems, in the
  121. past and in the future.</para>
  122. <indexterm zone="ch-system-e2fsprogs libblkid"><primary sortas="c-libblkid">libblkid</primary></indexterm>
  123. <para id="libblkid"><command>libblkid</command> contains routines for device
  124. identification and token extraction.</para>
  125. <indexterm zone="ch-system-e2fsprogs libcom_err"><primary sortas="c-libcom_err">libcom_err</primary></indexterm>
  126. <para id="libcom_err"><command>libcom_err</command> is the common error display routine.</para>
  127. <indexterm zone="ch-system-e2fsprogs libe2p"><primary sortas="c-libe2p">libe2p</primary></indexterm>
  128. <para id="libe2p"><command>libe2p</command> is used by dumpe2fs, chattr, and lsattr.</para>
  129. <indexterm zone="ch-system-e2fsprogs libext2fs"><primary sortas="c-libext2fs">libext2fs</primary></indexterm>
  130. <para id="libext2fs"><command>libext2fs</command> contains routines to enable user-level
  131. programs to manipulate an ext2 file system.</para>
  132. <indexterm zone="ch-system-e2fsprogs libss"><primary sortas="c-libss">libss</primary></indexterm>
  133. <para id="libss"><command>libss</command> is used by debugfs.</para>
  134. <indexterm zone="ch-system-e2fsprogs libuuid"><primary sortas="c-libuuid">libuuid</primary></indexterm>
  135. <para id="libuuid"><command>libuuid</command> contains routines for generating unique
  136. identifiers for objects that may be accessible beyond the local system.</para>
  137. </sect2>
  138. </sect1>