Whamcloud - gitweb
0d4651bd6f37d7531b78d0223394b27399d61ce2
[tools/e2fsprogs.git] / e2fsck / e2fsck.conf.5.in
1 .\" -*- nroff -*-
2 .\" Copyright 2006 by Theodore Ts'o.  All Rights Reserved.
3 .\" This file may be copied under the terms of the GNU Public License.
4 .\" 
5 .TH e2fsck.conf 5 "@E2FSPROGS_MONTH@ @E2FSPROGS_YEAR@" "E2fsprogs version @E2FSPROGS_VERSION@"
6 .SH NAME
7 e2fsck.conf \- Configuration file for e2fsck
8 .SH DESCRIPTION
9 .I e2fsck.conf
10 is the configuration file for 
11 .BR e2fsck (8).  
12 It controls the default behavior of 
13 .BR e2fsck (8)
14 while it is checking ext2, ext3, or ext4 filesystems.
15 .PP
16 The
17 .I e2fsck.conf
18 file uses an INI-style format.  Stanzas, or top-level sections, are 
19 delimited by square braces: [ ].  Within each section, each line 
20 defines a relation, which assigns tags to values, or to a subsection,
21 which contains further relations or subsections.   
22 .\" Tags can be assigned multiple values
23 An example of the INI-style format used by this configuration file 
24 follows below:
25 .P
26         [section1]
27 .br
28                 tag1 = value_a
29 .br
30                 tag1 = value_b
31 .br
32                 tag2 = value_c
33 .P
34         [section 2]
35 .br
36                 tag3 = {
37 .br
38                         subtag1 = subtag_value_a
39 .br
40                         subtag1 = subtag_value_b
41 .br
42                         subtag2 = subtag_value_c
43 .br
44                 }
45 .br
46                 tag1 = value_d
47 .br
48                 tag2 = value_e
49 .br
50         }
51 .P
52 Comments are delimited by a semicolon (';') or a hash ('#') character 
53 at the beginning of the comment, and are terminated by the end of 
54 line character.
55 .P
56 Tags and values must be quoted using double quotes if they contain
57 spaces.  Within a quoted string, the standard backslash interpretations 
58 apply: "\en" (for the newline character), 
59 "\et" (for the tab character), "\eb" (for the backspace character), 
60 and "\e\e" (for the backslash character).
61 .P
62 The following stanzas are used in the 
63 .I e2fsck.conf
64 file.  They will be described in more detail in future sections of this
65 document.
66 .TP 
67 .I [options]
68 This stanza contains general configuration parameters for 
69 .BR e2fsck 's
70 behavior.
71 .TP
72 .I [problems]
73 This stanza allows the administrator to reconfigure how e2fsck handles
74 various filesystem inconsistencies.
75 .TP
76 .I [scratch_files]
77 This stanza controls when e2fsck will attempt to use scratch files to
78 reduce the need for memory.
79 .SH THE [options] STANZA
80 The following relations are defined in the 
81 .I [options]
82 stanza.
83 .TP
84 .I allow_cancellation
85 If this relation is set to a boolean value of true, then if the user 
86 interrupts e2fsck using ^C, and the filesystem is not explicitly flagged
87 as containing errors, e2fsck will exit with an exit status of 0 instead
88 of 32.  This setting defaults to false.
89 .TP
90 .I accept_time_fudge
91 Unfortunately, due to Windows' unfortunate design decision
92 to configure the hardware clock to tick localtime, instead
93 of the more proper and less error-prone UTC time, many
94 users end up in the situation where the system clock is
95 incorrectly set at the time when e2fsck is run.
96 .IP
97 Historically this was usually due to some distributions
98 having buggy init scripts and/or installers that didn't
99 correctly detect this case and take appropriate
100 countermeasures.  However, it's still possible, despite the
101 best efforts of init script and installer authors to not be
102 able to detect this misconfiguration, usually due to a
103 buggy or misconfigured virtualization manager or the
104 installer not having access to a network time server
105 during the installation process.  So by default, we allow
106 the superblock times to be fudged by up to 24 hours.
107 This can be disabled by setting
108 .I accept_time_fudge
109 to the
110 boolean value of false.  This setting defaults to true.
111 .TP
112 .I broken_system_clock
113 The
114 .BR e2fsck (8)
115 program has some heuristics that assume that the system clock is
116 correct.  In addition, many system programs make similar assumptions.
117 For example, the UUID library depends on time not going backwards in
118 order for it to be able to make its guarantees about issuing universally
119 unique ID's.  Systems with broken system clocks, are well, broken.
120 However, broken system clocks, particularly in embedded systems, do
121 exist.  E2fsck will attempt to use heuristics to determine if the time
122 can not be trusted; and to skip time-based checks if this is true.  If
123 this boolean is set to true, then e2fsck will always assume that the
124 system clock can not be trusted.
125 .TP
126 .I clear_test_fs_flag
127 This boolean relation controls whether or not 
128 .BR e2fsck (8)
129 will offer to clear
130 the test_fs flag if the ext4 filesystem is available on the system.  It
131 defaults to true.
132 .TP 
133 .I defer_check_on_battery
134 This boolean relation controls whether or not the interval between 
135 filesystem checks (either based on time or number of mounts) should 
136 be doubled if the system is running on battery.  This setting defaults to 
137 true.
138 .TP
139 .I log_dir
140 If the
141 .I log_filename
142 relation contains a relative pathname, then the log file will be placed
143 in the directory named by the
144 .I log_dir
145 relation.
146 .TP
147 .I log_dir_fallback
148 This relation contains an alternate directory that will be used if the
149 directory specified by
150 .I log_dir
151 is not available or is not writeable.
152 .TP
153 .I log_dir_wait
154 If this boolean relation is true, them if the directories specified by
155 .I log_dir
156 or
157 .I log_dir_fallback
158 are not available or are not yet writeable, e2fsck will save the output
159 in a memory buffer, and a child process will periodically test to see if
160 the log directory has become available after the boot sequence has
161 mounted the requiste filesytem for reading/writing.  This implements the
162 functionality provided by
163 .BR logsave (8)
164 for e2fsck log files.
165 .TP
166 .I log_filename
167 This relation specifies the file name where a copy of e2fsck's output
168 will be written.   If certain problem reports are suppressed using the
169 .I max_count_problems
170 relation, (or on a per-problem basis using the
171 .I max_count
172 relation), the full set of problem reports will be written to the log
173 file.  The filename may contain various percent-expressions (%D, %T, %N,
174 etc.) which will be expanded so that the file name for the log file can
175 include things like date, time, device name, and other run-time
176 parameters.  See the
177 .B LOGGING
178 section for more details.
179 .TP
180 .I max_count_problems
181 This relation specifies the maximum number of problem reports of a
182 particular type will be printed to stdout before further problem reports
183 of that type are squelched.  This can be useful if the console is slow
184 (i.e., connected to a serial port) and so a large amount of output could
185 end up delaying the boot process for a long time (potentially hours).
186 .TP
187 .I indexed_dir_slack_percentage
188 When
189 .BR e2fsck (8)
190 repacks a indexed directory, reserve the specified percentage of
191 empty space in each leaf nodes so that a few new entries can
192 be added to the directory without splitting leaf nodes, so that
193 the average fill ratio of directories can be maintained at a
194 higher, more efficient level.  This relation defaults to 20
195 percent.
196 .SH THE [problems] STANZA
197 Each tag in the
198 .I [problems] 
199 stanza names a problem code specified with a leading "0x" followed by
200 six hex digits.   
201 The value of the tag is a subsection where the relations in that
202 subsection override the default treatment of that particular problem 
203 code.
204 .P
205 Note that inappropriate settings in this stanza may cause 
206 .B e2fsck
207 to behave incorrectly, or even crash.  Most system administrators should
208 not be making changes to this section without referring to source code.
209 .P
210 Within each problem code's subsection, the following tags may be used:
211 .TP
212 .I description
213 This relation allows the message which is printed when this filesystem
214 inconsistency is detected to be overridden.
215 .TP
216 .I preen_ok
217 This boolean relation overrides the default behavior controlling 
218 whether this filesystem problem should be automatically fixed when
219 .B e2fsck
220 is running in preen mode.
221 .TP
222 .I max_count
223 This integer relation overrides the 
224 .I max_count_problems
225 parameter (set in the options section) for this particular problem.
226 .TP
227 .I no_ok
228 This boolean relation overrides the default behavior determining
229 whether or not the filesystem will be marked as inconsistent if the user
230 declines to fix the reported problem.
231 .TP
232 .I no_default
233 This boolean relation overrides whether the default answer for this 
234 problem (or question) should be "no".
235 .TP 
236 .I preen_nomessage
237 This boolean relation overrides the default behavior controlling 
238 whether or not the description for this filesystem problem should
239 be suppressed when
240 .B e2fsck
241 is running in preen mode.
242 .TP
243 .I no_nomsg
244 This boolean relation overrides the default behavior controlling 
245 whether or not the description for this filesystem problem should
246 be suppressed when a problem forced not to be fixed, either because
247 .B e2fsck
248 is run with the
249 .B -n
250 option or because the
251 .I force_no
252 flag has been set for the problem.
253 .TP
254 .I force_no
255 This boolean option, if set to true, forces a problem to never be fixed.
256 That is, it will be as if the user problem responds 'no' to the question
257 of 'should this problem be fixed?'.  The
258 .I force_no
259 option even overrides the
260 .B -y
261 option given on the command-line (just for the specific problem, of course).
262 .SH THE [scratch_files] STANZA
263 The following relations are defined in the 
264 .I [scratch_files]
265 stanza.
266 .TP
267 .I directory
268 If the directory named by this relation exists and is writeable, then
269 e2fsck will attempt to use this directory to store scratch files instead
270 of using in-memory data structures.
271 .TP
272 .I numdirs_threshold
273 If this relation is set, then in-memory data structures be used if the
274 number of directories in the filesystem are fewer than amount specified.
275 .TP
276 .I dirinfo
277 This relation controls whether or not the scratch file directory is used
278 instead of an in-memory data structure for directory information.  It
279 defaults to true.
280 .TP
281 .I icount
282 This relation controls whether or not the scratch file directory is used
283 instead of an in-memory data structure when tracking inode counts.  It
284 defaults to true.
285 .SH LOGGING
286 E2fsck has the facility to save the information from an e2fsck run in a
287 directory so that a system administrator can review its output at their
288 leisure.  This allows information captured during the automatic e2fsck
289 preen run, as well as a manually started e2fsck run, to be saved for
290 posterity.  This facility is controlled by the
291 .IR log_filename ,
292 .IR log_dir ,
293 .IR log_dir_fallback ,
294 and
295 .I log_dir_wait
296 relations in the
297 .I [options]
298 stanza.
299 .PP
300 The filename in
301 .I log_filename
302 may contain the following percent-expressions that will be expanded as
303 follows.
304 .TP
305 .B %d
306 The current day of the month
307 .TP
308 .B %D
309 The current date; this is a equivalent of
310 .B %Y%m%d
311 .TP
312 .B %h
313 The hostname of the system.
314 .TP
315 .B %H
316 The current hour in 24-hour format (00..23)
317 .TP
318 .B %m
319 The current month as a two-digit number (01..12)
320 .TP
321 .B %M
322 The current minute (00..59)
323 .TP
324 .B %N
325 The name of the block device containing the file system, with any
326 directory pathname stripped off.
327 .TP
328 .B %p
329 The pid of the e2fsck process
330 .TP
331 .B %s
332 The current time expressed as the number of seconds since 1970-01-01
333 00:00:00 UTC
334 .TP
335 .B %S
336 The current second (00..59)
337 .TP
338 .B %T
339 The current time; this is equivalent of
340 .B %H%M%S
341 .TP
342 .B %u
343 The name of the user running e2fsck.
344 .TP
345 .B %U
346 This percent expression does not expand to anything, but it signals that
347 any following date or time expressions should be expressed in UTC time
348 instead of the local timzeone.
349 .TP
350 .B %y
351 The last two digits of the current year (00..99)
352 .TP
353 .B %Y
354 The current year (i.e., 2012).
355 .SH EXAMPLES
356 The following recipe will prevent e2fsck from aborting during the boot
357 process when a filesystem contains orphaned files.  (Of course, this is
358 not always a good idea, since critical files that are needed for the
359 security of the system could potentially end up in lost+found, and
360 starting the system without first having a system administrator check
361 things out may be dangerous.)
362 .P
363 .br
364         [problems]
365 .br
366                 0x040002 = {
367 .br
368                         preen_ok = true
369 .br
370                         description = "@u @i %i.  "
371 .br
372                 }
373 .P
374 The following recipe will cause an e2fsck logfile to be written to the
375 directory /var/log/e2fsck, with a filename that contains the device
376 name, the hostname of the system, the date, and time: e.g.,
377 "e2fsck-sda3.server.INFO.20120314-112142".  If the directory containing
378 /var/log is located on the root file system
379 which is initially mounted read-only, then the output will be saved in
380 memory and written out once the root file system has been remounted
381 read/write.   To avoid too much detail from being written to the serial
382 console (which could potentially slow down the boot sequence), only print
383 no more than 16 instances of each type of file system corruption.
384 .P
385 .br
386         [options]
387 .br
388                 max_count_problems = 16
389 .br
390                 log_dir = /var/log/e2fsck
391 .br
392                 log_filename = e2fsck-%N.%h.INFO.%D-%T
393 .br
394                 log_dir_wait = true
395 .P
396 .SH FILES
397 .TP
398 .I /etc/e2fsck.conf
399 The configuration file for 
400 .BR e2fsck (8).
401 .SH SEE ALSO
402 .BR e2fsck (8)