706 lines
21 KiB
HTML
706 lines
21 KiB
HTML
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<HTML><HEAD><TITLE>Man page of e2fsck.conf</TITLE>
|
|
</HEAD><BODY>
|
|
<H1>e2fsck.conf</H1>
|
|
Section: File Formats (5)<BR>Updated: January 2020<BR><A HREF="#index">Index</A>
|
|
<A HREF="/cgi-bin/man/man2html">Return to Main Contents</A><HR>
|
|
|
|
<A NAME="lbAB"> </A>
|
|
<H2>NAME</H2>
|
|
|
|
e2fsck.conf - Configuration file for e2fsck
|
|
<A NAME="lbAC"> </A>
|
|
<H2>DESCRIPTION</H2>
|
|
|
|
<I>e2fsck.conf</I>
|
|
|
|
is the configuration file for
|
|
<B><A HREF="/cgi-bin/man/man2html?8+e2fsck">e2fsck</A></B>(8).
|
|
|
|
It controls the default behavior of
|
|
<B><A HREF="/cgi-bin/man/man2html?8+e2fsck">e2fsck</A></B>(8)
|
|
|
|
while it is checking ext2, ext3, or ext4 filesystems.
|
|
<P>
|
|
|
|
The
|
|
<I>e2fsck.conf</I>
|
|
|
|
file uses an INI-style format. Stanzas, or top-level sections, are
|
|
delimited by square braces: [ ]. Within each section, each line
|
|
defines a relation, which assigns tags to values, or to a subsection,
|
|
which contains further relations or subsections.
|
|
|
|
An example of the INI-style format used by this configuration file
|
|
follows below:
|
|
<P>
|
|
|
|
<TT> </TT>[section1]<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>tag1 = value_a<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>tag1 = value_b<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>tag2 = value_c<BR>
|
|
<P>
|
|
|
|
<TT> </TT>[section 2]<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>tag3 = {<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT><TT> </TT>subtag1 = subtag_value_a<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT><TT> </TT>subtag1 = subtag_value_b<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT><TT> </TT>subtag2 = subtag_value_c<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>}<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>tag1 = value_d<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>tag2 = value_e<BR>
|
|
<BR>
|
|
|
|
<TT> </TT>}<BR>
|
|
<P>
|
|
|
|
Comments are delimited by a semicolon (';') or a hash ('#') character
|
|
at the beginning of the comment, and are terminated by the end of
|
|
line character.
|
|
<P>
|
|
|
|
Tags and values must be quoted using double quotes if they contain
|
|
spaces. Within a quoted string, the standard backslash interpretations
|
|
apply: "\n" (for the newline character),
|
|
"\t" (for the tab character), "\b" (for the backspace character),
|
|
and "\\" (for the backslash character).
|
|
<P>
|
|
|
|
The following stanzas are used in the
|
|
<I>e2fsck.conf</I>
|
|
|
|
file. They will be described in more detail in future sections of this
|
|
document.
|
|
<DL COMPACT>
|
|
<DT id="1"><I>[options]</I>
|
|
|
|
<DD>
|
|
This stanza contains general configuration parameters for
|
|
<B>e2fsck</B>'s
|
|
|
|
behavior.
|
|
<DT id="2"><I>[defaults]</I>
|
|
|
|
<DD>
|
|
Contains relations which define the default parameters used by
|
|
<B><A HREF="/cgi-bin/man/man2html?8+e2fsck">e2fsck</A></B>(8).
|
|
|
|
In general, these defaults may be overridden by command-line options
|
|
provided by the user.
|
|
<DT id="3"><I>[problems]</I>
|
|
|
|
<DD>
|
|
This stanza allows the administrator to reconfigure how e2fsck handles
|
|
various filesystem inconsistencies.
|
|
<DT id="4"><I>[scratch_files]</I>
|
|
|
|
<DD>
|
|
This stanza controls when e2fsck will attempt to use
|
|
scratch files to reduce the need for memory.
|
|
</DL>
|
|
<A NAME="lbAD"> </A>
|
|
<H2>THE [options] STANZA</H2>
|
|
|
|
The following relations are defined in the
|
|
<I>[options]</I>
|
|
|
|
stanza.
|
|
<DL COMPACT>
|
|
<DT id="5"><I>allow_cancellation</I>
|
|
|
|
<DD>
|
|
If this relation is set to a boolean value of true, then if the user
|
|
interrupts e2fsck using ^C, and the filesystem is not explicitly flagged
|
|
as containing errors, e2fsck will exit with an exit status of 0 instead
|
|
of 32. This setting defaults to false.
|
|
<DT id="6"><I>accept_time_fudge</I>
|
|
|
|
<DD>
|
|
Unfortunately, due to Windows' unfortunate design decision
|
|
to configure the hardware clock to tick localtime, instead
|
|
of the more proper and less error-prone UTC time, many
|
|
users end up in the situation where the system clock is
|
|
incorrectly set at the time when e2fsck is run.
|
|
<DT id="7"><DD>
|
|
Historically this was usually due to some distributions
|
|
having buggy init scripts and/or installers that didn't
|
|
correctly detect this case and take appropriate
|
|
countermeasures. Unfortunately, this is occasionally
|
|
true even today, usually due to a
|
|
buggy or misconfigured virtualization manager or the
|
|
installer not having access to a network time server
|
|
during the installation process. So by default, we allow
|
|
the superblock times to be fudged by up to 24 hours.
|
|
This can be disabled by setting
|
|
<I>accept_time_fudge</I>
|
|
|
|
to the
|
|
boolean value of false. This setting defaults to true.
|
|
<DT id="8"><I>broken_system_clock</I>
|
|
|
|
<DD>
|
|
The
|
|
<B><A HREF="/cgi-bin/man/man2html?8+e2fsck">e2fsck</A></B>(8)
|
|
|
|
program has some heuristics that assume that the system clock is
|
|
correct. In addition, many system programs make similar assumptions.
|
|
For example, the UUID library depends on time not going backwards in
|
|
order for it to be able to make its guarantees about issuing universally
|
|
unique ID's. Systems with broken system clocks, are well, broken.
|
|
However, broken system clocks, particularly in embedded systems, do
|
|
exist. E2fsck will attempt to use heuristics to determine if the time
|
|
can not be trusted; and to skip time-based checks if this is true. If
|
|
this boolean is set to true, then e2fsck will always assume that the
|
|
system clock can not be trusted.
|
|
<DT id="9"><I>buggy_init_scripts</I>
|
|
|
|
<DD>
|
|
This boolean relation is an alias for
|
|
<I>accept_time_fudge</I>
|
|
|
|
for backwards compatibility; it used to
|
|
be that the behavior defined by
|
|
<I>accept_time_fudge</I>
|
|
|
|
above defaulted to false, and
|
|
<I>buggy_init_scripts</I>
|
|
|
|
would enable superblock time field to be wrong by up to 24 hours. When
|
|
we changed the default, we also renamed this boolean relation to
|
|
<I>accept_time_fudge.</I>
|
|
|
|
<DT id="10"><I>clear_test_fs_flag</I>
|
|
|
|
<DD>
|
|
This boolean relation controls whether or not
|
|
<B><A HREF="/cgi-bin/man/man2html?8+e2fsck">e2fsck</A></B>(8)
|
|
|
|
will offer to clear
|
|
the test_fs flag if the ext4 filesystem is available on the system. It
|
|
defaults to true.
|
|
<DT id="11"><I>defer_check_on_battery</I>
|
|
|
|
<DD>
|
|
This boolean relation controls whether or not the interval between
|
|
filesystem checks (either based on time or number of mounts) should
|
|
be doubled if the system is running on battery. This setting defaults to
|
|
true.
|
|
<DT id="12"><I>indexed_dir_slack_percentage</I>
|
|
|
|
<DD>
|
|
When
|
|
<B><A HREF="/cgi-bin/man/man2html?8+e2fsck">e2fsck</A></B>(8)
|
|
|
|
repacks a indexed directory, reserve the specified percentage of
|
|
empty space in each leaf nodes so that a few new entries can
|
|
be added to the directory without splitting leaf nodes, so that
|
|
the average fill ratio of directories can be maintained at a
|
|
higher, more efficient level. This relation defaults to 20
|
|
percent.
|
|
<DT id="13"><I>inode_count_fullmap</I>
|
|
|
|
<DD>
|
|
If this boolean relation is true, trade off using memory for speed when
|
|
checking a file system with a large number of hard-linked files. The
|
|
amount of memory required is proportional to the number of inodes in the
|
|
file system. For large file systems, this can be gigabytes of memory.
|
|
(For example a 40TB file system with 2.8 billion inodes will consume an
|
|
additional 5.7 GB memory if this optimization is enabled.) This setting
|
|
defaults to false.
|
|
<DT id="14"><I>log_dir</I>
|
|
|
|
<DD>
|
|
If the
|
|
<I>log_filename</I>
|
|
|
|
or
|
|
<I>problem_log_filename</I>
|
|
|
|
relations contains a relative pathname, then the log file will be placed
|
|
in the directory named by the
|
|
<I>log_dir</I>
|
|
|
|
relation.
|
|
<DT id="15"><I>log_dir_fallback</I>
|
|
|
|
<DD>
|
|
This relation contains an alternate directory that will be used if the
|
|
directory specified by
|
|
<I>log_dir</I>
|
|
|
|
is not available or is not writable.
|
|
<DT id="16"><I>log_dir_wait</I>
|
|
|
|
<DD>
|
|
If this boolean relation is true, them if the directories specified by
|
|
<I>log_dir</I>
|
|
|
|
or
|
|
<I>log_dir_fallback</I>
|
|
|
|
are not available or are not yet writable, e2fsck will save the output
|
|
in a memory buffer, and a child process will periodically test to see if
|
|
the log directory has become available after the boot sequence has
|
|
mounted the requested file system for reading/writing. This implements the
|
|
functionality provided by
|
|
<B><A HREF="/cgi-bin/man/man2html?8+logsave">logsave</A></B>(8)
|
|
|
|
for e2fsck log files.
|
|
<DT id="17"><I>log_filename</I>
|
|
|
|
<DD>
|
|
This relation specifies the file name where a copy of e2fsck's output
|
|
will be written. If certain problem reports are suppressed using the
|
|
<I>max_count_problems</I>
|
|
|
|
relation, (or on a per-problem basis using the
|
|
<I>max_count</I>
|
|
|
|
relation), the full set of problem reports will be written to the log
|
|
file. The filename may contain various percent-expressions (%D, %T, %N,
|
|
etc.) which will be expanded so that the file name for the log file can
|
|
include things like date, time, device name, and other run-time
|
|
parameters. See the
|
|
<B>LOGGING</B>
|
|
|
|
section for more details.
|
|
<DT id="18"><I>max_count_problems</I>
|
|
|
|
<DD>
|
|
This relation specifies the maximum number of problem reports of a
|
|
particular type will be printed to stdout before further problem reports
|
|
of that type are squelched. This can be useful if the console is slow
|
|
(i.e., connected to a serial port) and so a large amount of output could
|
|
end up delaying the boot process for a long time (potentially hours).
|
|
<DT id="19"><I>no_optimize_extents</I>
|
|
|
|
<DD>
|
|
If this boolean relation is true, do not offer to optimize the extent
|
|
tree by reducing the tree's width or depth. This setting defaults to false.
|
|
<DT id="20"><I>problem_log_filename</I>
|
|
|
|
<DD>
|
|
This relation specifies the file name where a log of problem codes
|
|
found by e2fsck be written. The filename may contain various
|
|
percent-expressions (%D, %T, %N,
|
|
etc.) which will be expanded so that the file name for the log file can
|
|
include things like date, time, device name, and other run-time
|
|
parameters. See the
|
|
<B>LOGGING</B>
|
|
|
|
section for more details.
|
|
<DT id="21"><I>readahead_mem_pct</I>
|
|
|
|
<DD>
|
|
Use this percentage of memory to try to read in metadata blocks ahead of the
|
|
main e2fsck thread. This should reduce run times, depending on the speed of
|
|
the underlying storage and the amount of free memory. There is no default, but
|
|
see
|
|
<B>readahead_kb</B>
|
|
|
|
for more details.
|
|
<DT id="22"><I>readahead_kb</I>
|
|
|
|
<DD>
|
|
Use this amount of memory to read in metadata blocks ahead of the main checking
|
|
thread. Setting this value to zero disables readahead entirely. By default,
|
|
this is set the size of two block groups' inode tables (typically 4MiB on a
|
|
regular ext4 filesystem); if this amount is more than 1/50th of total physical
|
|
memory, readahead is disabled.
|
|
<DT id="23"><I>report_features</I>
|
|
|
|
<DD>
|
|
If this boolean relation is true, e2fsck will print the file system
|
|
features as part of its verbose reporting (i.e., if the
|
|
<B>-v</B>
|
|
|
|
option is specified)
|
|
<DT id="24"><I>report_time</I>
|
|
|
|
<DD>
|
|
If this boolean relation is true, e2fsck will run as if the options
|
|
<B>-tt</B>
|
|
|
|
are always specified. This will cause e2fsck to print timing statistics
|
|
on a pass by pass basis for full file system checks.
|
|
<DT id="25"><I>report_verbose</I>
|
|
|
|
<DD>
|
|
If this boolean relation is true, e2fsck will run as if the option
|
|
<B>-v</B>
|
|
|
|
is always specified. This will cause e2fsck to print some additional
|
|
information at the end of each full file system check.
|
|
</DL>
|
|
<A NAME="lbAE"> </A>
|
|
<H2>THE [defaults] STANZA</H2>
|
|
|
|
The following relations are defined in the
|
|
<I>[defaults]</I>
|
|
|
|
stanza.
|
|
<DL COMPACT>
|
|
<DT id="26"><I>undo_dir</I>
|
|
|
|
<DD>
|
|
This relation specifies the directory where the undo file should be
|
|
stored. It can be overridden via the
|
|
<B>E2FSPROGS_UNDO_DIR</B>
|
|
|
|
environment variable. If the directory location is set to the value
|
|
<I>none</I>,
|
|
|
|
<B>e2fsck</B>
|
|
|
|
will not create an undo file.
|
|
</DL>
|
|
<A NAME="lbAF"> </A>
|
|
<H2>THE [problems] STANZA</H2>
|
|
|
|
Each tag in the
|
|
<I>[problems]</I>
|
|
|
|
stanza names a problem code specified with a leading "0x" followed by
|
|
six hex digits.
|
|
The value of the tag is a subsection where the relations in that
|
|
subsection override the default treatment of that particular problem
|
|
code.
|
|
<P>
|
|
|
|
Note that inappropriate settings in this stanza may cause
|
|
<B>e2fsck</B>
|
|
|
|
to behave incorrectly, or even crash. Most system administrators should
|
|
not be making changes to this section without referring to source code.
|
|
<P>
|
|
|
|
Within each problem code's subsection, the following tags may be used:
|
|
<DL COMPACT>
|
|
<DT id="27"><I>description</I>
|
|
|
|
<DD>
|
|
This relation allows the message which is printed when this filesystem
|
|
inconsistency is detected to be overridden.
|
|
<DT id="28"><I>preen_ok</I>
|
|
|
|
<DD>
|
|
This boolean relation overrides the default behavior controlling
|
|
whether this filesystem problem should be automatically fixed when
|
|
<B>e2fsck</B>
|
|
|
|
is running in preen mode.
|
|
<DT id="29"><I>max_count</I>
|
|
|
|
<DD>
|
|
This integer relation overrides the
|
|
<I>max_count_problems</I>
|
|
|
|
parameter (set in the options section) for this particular problem.
|
|
<DT id="30"><I>no_ok</I>
|
|
|
|
<DD>
|
|
This boolean relation overrides the default behavior determining
|
|
whether or not the filesystem will be marked as inconsistent if the user
|
|
declines to fix the reported problem.
|
|
<DT id="31"><I>no_default</I>
|
|
|
|
<DD>
|
|
This boolean relation overrides whether the default answer for this
|
|
problem (or question) should be "no".
|
|
<DT id="32"><I>preen_nomessage</I>
|
|
|
|
<DD>
|
|
This boolean relation overrides the default behavior controlling
|
|
whether or not the description for this filesystem problem should
|
|
be suppressed when
|
|
<B>e2fsck</B>
|
|
|
|
is running in preen mode.
|
|
<DT id="33"><I>no_nomsg</I>
|
|
|
|
<DD>
|
|
This boolean relation overrides the default behavior controlling
|
|
whether or not the description for this filesystem problem should
|
|
be suppressed when a problem forced not to be fixed, either because
|
|
<B>e2fsck</B>
|
|
|
|
is run with the
|
|
<B>-n</B>
|
|
|
|
option or because the
|
|
<I>force_no</I>
|
|
|
|
flag has been set for the problem.
|
|
<DT id="34"><I>force_no</I>
|
|
|
|
<DD>
|
|
This boolean option, if set to true, forces a problem to never be fixed.
|
|
That is, it will be as if the user problem responds 'no' to the question
|
|
of 'should this problem be fixed?'. The
|
|
<I>force_no</I>
|
|
|
|
option even overrides the
|
|
<B>-y</B>
|
|
|
|
option given on the command-line (just for the specific problem, of course).
|
|
<DT id="35"><I>not_a_fix</I>
|
|
|
|
<DD>
|
|
This boolean option, it set to true, marks the problem as
|
|
one where if the user gives permission to make the requested change,
|
|
it does not mean that the file system had a problem which has since
|
|
been fixed. This is used for requests to optimize the file system's
|
|
data structure, such as pruning an extent tree.
|
|
</DL>
|
|
<A NAME="lbAG"> </A>
|
|
<H2>THE [scratch_files] STANZA</H2>
|
|
|
|
The following relations are defined in the
|
|
<I>[scratch_files]</I>
|
|
|
|
stanza.
|
|
<DL COMPACT>
|
|
<DT id="36"><I>directory</I>
|
|
|
|
<DD>
|
|
If the directory named by this relation exists and is
|
|
writeable, then e2fsck will attempt to use this
|
|
directory to store scratch files instead of using
|
|
in-memory data structures.
|
|
<DT id="37"><I>numdirs_threshold</I>
|
|
|
|
<DD>
|
|
If this relation is set, then in-memory data structures
|
|
will be used if the number of directories in the filesystem
|
|
are fewer than amount specified.
|
|
<DT id="38"><I>dirinfo</I>
|
|
|
|
<DD>
|
|
This relation controls whether or not the scratch file
|
|
directory is used instead of an in-memory data
|
|
structure for directory information. It defaults to
|
|
true.
|
|
<DT id="39"><I>icount</I>
|
|
|
|
<DD>
|
|
This relation controls whether or not the scratch file
|
|
directory is used instead of an in-memory data
|
|
structure when tracking inode counts. It defaults to
|
|
true.
|
|
</DL>
|
|
<A NAME="lbAH"> </A>
|
|
<H2>LOGGING</H2>
|
|
|
|
E2fsck has the facility to save the information from an e2fsck run in a
|
|
directory so that a system administrator can review its output at their
|
|
leisure. This allows information captured during the automatic e2fsck
|
|
preen run, as well as a manually started e2fsck run, to be saved for
|
|
posterity. This facility is controlled by the
|
|
<I>log_filename</I>,
|
|
|
|
<I>log_dir</I>,
|
|
|
|
<I>log_dir_fallback</I>,
|
|
|
|
and
|
|
<I>log_dir_wait</I>
|
|
|
|
relations in the
|
|
<I>[options]</I>
|
|
|
|
stanza.
|
|
<P>
|
|
|
|
The filename in
|
|
<I>log_filename</I>
|
|
|
|
may contain the following percent-expressions that will be expanded as
|
|
follows.
|
|
<DL COMPACT>
|
|
<DT id="40"><B>%d</B>
|
|
|
|
<DD>
|
|
The current day of the month
|
|
<DT id="41"><B>%D</B>
|
|
|
|
<DD>
|
|
The current date; this is a equivalent of
|
|
<B>%Y%m%d</B>
|
|
|
|
<DT id="42"><B>%h</B>
|
|
|
|
<DD>
|
|
The hostname of the system.
|
|
<DT id="43"><B>%H</B>
|
|
|
|
<DD>
|
|
The current hour in 24-hour format (00..23)
|
|
<DT id="44"><B>%m</B>
|
|
|
|
<DD>
|
|
The current month as a two-digit number (01..12)
|
|
<DT id="45"><B>%M</B>
|
|
|
|
<DD>
|
|
The current minute (00..59)
|
|
<DT id="46"><B>%N</B>
|
|
|
|
<DD>
|
|
The name of the block device containing the file system, with any
|
|
directory pathname stripped off.
|
|
<DT id="47"><B>%p</B>
|
|
|
|
<DD>
|
|
The pid of the e2fsck process
|
|
<DT id="48"><B>%s</B>
|
|
|
|
<DD>
|
|
The current time expressed as the number of seconds since 1970-01-01
|
|
00:00:00 UTC
|
|
<DT id="49"><B>%S</B>
|
|
|
|
<DD>
|
|
The current second (00..59)
|
|
<DT id="50"><B>%T</B>
|
|
|
|
<DD>
|
|
The current time; this is equivalent of
|
|
<B>%H%M%S</B>
|
|
|
|
<DT id="51"><B>%u</B>
|
|
|
|
<DD>
|
|
The name of the user running e2fsck.
|
|
<DT id="52"><B>%U</B>
|
|
|
|
<DD>
|
|
This percent expression does not expand to anything, but it signals that
|
|
any following date or time expressions should be expressed in UTC time
|
|
instead of the local timezone.
|
|
<DT id="53"><B>%y</B>
|
|
|
|
<DD>
|
|
The last two digits of the current year (00..99)
|
|
<DT id="54"><B>%Y</B>
|
|
|
|
<DD>
|
|
The current year (i.e., 2012).
|
|
</DL>
|
|
<A NAME="lbAI"> </A>
|
|
<H2>EXAMPLES</H2>
|
|
|
|
The following recipe will prevent e2fsck from aborting during the boot
|
|
process when a filesystem contains orphaned files. (Of course, this is
|
|
not always a good idea, since critical files that are needed for the
|
|
security of the system could potentially end up in lost+found, and
|
|
starting the system without first having a system administrator check
|
|
things out may be dangerous.)
|
|
<P>
|
|
|
|
<BR>
|
|
|
|
<TT> </TT>[problems]<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>0x040002 = {<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT><TT> </TT>preen_ok = true<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT><TT> </TT>description = "@u @i %i. "<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>}<BR>
|
|
<P>
|
|
|
|
The following recipe will cause an e2fsck logfile to be written to the
|
|
directory /var/log/e2fsck, with a filename that contains the device
|
|
name, the hostname of the system, the date, and time: e.g.,
|
|
"e2fsck-sda3.server.INFO.20120314-112142". If the directory containing
|
|
/var/log is located on the root file system
|
|
which is initially mounted read-only, then the output will be saved in
|
|
memory and written out once the root file system has been remounted
|
|
read/write. To avoid too much detail from being written to the serial
|
|
console (which could potentially slow down the boot sequence), only print
|
|
no more than 16 instances of each type of file system corruption.
|
|
<P>
|
|
|
|
<BR>
|
|
|
|
<TT> </TT>[options]<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>max_count_problems = 16<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>log_dir = /var/log/e2fsck<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>log_filename = e2fsck-%N.%h.INFO.%D-%T<BR>
|
|
<BR>
|
|
|
|
<TT> </TT><TT> </TT>log_dir_wait = true<BR>
|
|
<P>
|
|
|
|
<A NAME="lbAJ"> </A>
|
|
<H2>FILES</H2>
|
|
|
|
<DL COMPACT>
|
|
<DT id="55"><I>/etc/e2fsck.conf</I>
|
|
|
|
<DD>
|
|
The configuration file for
|
|
<B><A HREF="/cgi-bin/man/man2html?8+e2fsck">e2fsck</A></B>(8).
|
|
|
|
</DL>
|
|
<A NAME="lbAK"> </A>
|
|
<H2>SEE ALSO</H2>
|
|
|
|
<B><A HREF="/cgi-bin/man/man2html?8+e2fsck">e2fsck</A></B>(8)
|
|
|
|
<P>
|
|
|
|
<HR>
|
|
<A NAME="index"> </A><H2>Index</H2>
|
|
<DL>
|
|
<DT id="56"><A HREF="#lbAB">NAME</A><DD>
|
|
<DT id="57"><A HREF="#lbAC">DESCRIPTION</A><DD>
|
|
<DT id="58"><A HREF="#lbAD">THE [options] STANZA</A><DD>
|
|
<DT id="59"><A HREF="#lbAE">THE [defaults] STANZA</A><DD>
|
|
<DT id="60"><A HREF="#lbAF">THE [problems] STANZA</A><DD>
|
|
<DT id="61"><A HREF="#lbAG">THE [scratch_files] STANZA</A><DD>
|
|
<DT id="62"><A HREF="#lbAH">LOGGING</A><DD>
|
|
<DT id="63"><A HREF="#lbAI">EXAMPLES</A><DD>
|
|
<DT id="64"><A HREF="#lbAJ">FILES</A><DD>
|
|
<DT id="65"><A HREF="#lbAK">SEE ALSO</A><DD>
|
|
</DL>
|
|
<HR>
|
|
This document was created by
|
|
<A HREF="/cgi-bin/man/man2html">man2html</A>,
|
|
using the manual pages.<BR>
|
|
Time: 00:06:03 GMT, March 31, 2021
|
|
</BODY>
|
|
</HTML>
|