blob: c1b54f727f1b455497bd8fcc8331b66c2fd66d9f [file] [log] [blame]
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -05001.\" -*- 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 mke2fs.conf 5 "@E2FSPROGS_MONTH@ @E2FSPROGS_YEAR@" "E2fsprogs version @E2FSPROGS_VERSION@"
6.SH NAME
7mke2fs.conf \- Configuration file for mke2fs
8.SH DESCRIPTION
9.I mke2fs.conf
10is the configuration file for
11.BR mke2fs (8).
12It controls the default parameters used by
13.BR mke2fs (8)
14when it is creating ext2 or ext3 filesystems.
15.PP
16The
17.I mke2fs.conf
Theodore Ts'ofac95252006-03-27 01:05:26 -050018file uses an INI-style format. Stanzas, or top-level sections, are
19delimited by square braces: [ ]. Within each section, each line
20defines a relation, which assigns tags to values, or to a subsection,
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050021which contains further relations or subsections.
22.\" Tags can be assigned multiple values
23An example of the INI-style format used by this configuration file
24follows below:
25.P
Theodore Ts'ofac95252006-03-27 01:05:26 -050026 [section1]
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050027.br
Theodore Ts'ofac95252006-03-27 01:05:26 -050028 tag1 = value_a
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050029.br
Theodore Ts'ofac95252006-03-27 01:05:26 -050030 tag1 = value_b
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050031.br
Theodore Ts'ofac95252006-03-27 01:05:26 -050032 tag2 = value_c
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050033.P
Theodore Ts'ofac95252006-03-27 01:05:26 -050034 [section 2]
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050035.br
Theodore Ts'ofac95252006-03-27 01:05:26 -050036 tag3 = {
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050037.br
Theodore Ts'ofac95252006-03-27 01:05:26 -050038 subtag1 = subtag_value_a
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050039.br
Theodore Ts'ofac95252006-03-27 01:05:26 -050040 subtag1 = subtag_value_b
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050041.br
Theodore Ts'ofac95252006-03-27 01:05:26 -050042 subtag2 = subtag_value_c
43.br
44 }
45.br
46 tag1 = value_d
47.br
48 tag2 = value_e
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050049.br
50 }
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050051.P
Theodore Ts'ofac95252006-03-27 01:05:26 -050052Comments are delimited by a semicolon (';') or a hash ('#') character
53at the beginning of the comment, and are terminated by the end of
54line character.
55.P
56Tags and values must be quoted using double quotes if they contain
57spaces. Within a quoted string, the standard backslash interpretations
58apply: "\en" (for the newline character),
59"\et" (for the tab character), "\eb" (for the backspace character),
60and "\e\e" (for the backslash character).
61.P
Theodore Ts'o9447f382006-05-22 17:59:37 -040062The following stanzas are used in the
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050063.I mke2fs.conf
64file. They will be described in more detail in future sections of this
65document.
66.TP
67.I [defaults]
68Contains relations which define the default parameters
69used by
70.BR mke2fs (8).
71In general, these defaults may be overridden by a definition in the
72.B fs_types
Theodore Ts'ofac95252006-03-27 01:05:26 -050073stanza, or by an command-line option provided by the user.
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050074.TP
75.I [fs_types]
76Contains relations which define defaults that should be used for specific
77filesystem types. The filesystem type can be specified explicitly using
78the
79.B -T
80option to
81.BR mke2fs (8).
Theodore Ts'ofac95252006-03-27 01:05:26 -050082.SH THE [defaults] STANZA
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050083The following relations are defined in the
84.I [defaults]
Theodore Ts'ofac95252006-03-27 01:05:26 -050085stanza.
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050086.TP
87.I base_features
88This relation specifies the filesystems features which are enabled in
Theodore Ts'o9447f382006-05-22 17:59:37 -040089newly created filesystems. It may be overridden by the
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050090.I base_features
Theodore Ts'o3d438362008-02-19 08:32:58 -050091relation found in the filesystem or usage type subsection of
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050092the
93.I [fs_types]
Theodore Ts'ofac95252006-03-27 01:05:26 -050094stanza.
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -050095.TP
96.I default_features
97This relation specifies a set of features that should be added or
98removed to the features listed in the
99.I base_features
Theodore Ts'o9447f382006-05-22 17:59:37 -0400100relation. It may be overridden by the filesystem-specific
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500101.I default_features
Theodore Ts'o3d438362008-02-19 08:32:58 -0500102in the filesystem or usage type subsection of
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500103.IR [fs_types] ,
104and by the
105.B -O
106command-line option
107to
108.BR mke2fs (8).
109.TP
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +0530110.I force_undo
111This relation, if set to a boolean value of true, forces
112.B mke2fs
113to always try to create an undo file, even if the undo file might be
114huge and it might extend the time to create the filesystem image
115because the inode table isn't being initialized lazily.
116.TP
Theodore Ts'o3d438362008-02-19 08:32:58 -0500117.I fs_type
118This relation specifies the default filesystem type if the user does not
119specify it via the
120.B \-t
121option, or if
122.B mke2fs
123is not started using a program name of the form
124.BI mkfs. fs-type\fR.
125If both the user and the
126.B mke2fs.conf
127file does not specify a default filesystem type, mke2fs will use a
128default filesystem type of
129.IR ext3
130if a journal was requested via a command-line option, or
131.I ext2
132if not.
133.TP
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500134.I blocksize
135This relation specifies the default blocksize if the user does not
136specify a blocksize on the command line, and the filesystem-type
137specific section of the configuration file does not specify a blocksize.
138.TP
Theodore Ts'od5f57d92008-08-29 21:39:36 -0400139.I hash_alg
140This relation specifies the default hash algorithm used for the
141new filesystems with hashed b-tree directories. Valid algorithms
142accepted are:
143.IR legacy ,
144.IR half_md4 ,
145and
146.IR tea .
147.TP
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500148.I inode_ratio
149This relation specifies the default inode ratio if the user does not
150specify one on the command line, and the filesystem-type
151specific section of the configuration file does not specify a default
152inode ratio.
Andreas Dilger067911a2006-07-15 22:08:20 -0400153.TP
154.I inode_size
155This relation specifies the default inode size if the user does not
156specify one on the command line, and the filesystem-type
157specific section of the configuration file does not specify a default
158inode size.
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +0530159.TP
160.I undo_dir
161This relation specifies the directory where the undo file should be
Theodore Ts'o711d3842008-09-07 14:08:40 -0400162stored. It can be overridden via the
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +0530163.B E2FSPROGS_UNDO_DIR
Theodore Ts'o711d3842008-09-07 14:08:40 -0400164environment variable. If the directory location is set to the value
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +0530165.IR none ,
166.B mke2fs
167will not create an undo file.
Theodore Ts'ofac95252006-03-27 01:05:26 -0500168.SH THE [fs_types] STANZA
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500169Each tag in the
170.I [fs_types]
Theodore Ts'o3d438362008-02-19 08:32:58 -0500171stanza names a filesystem type or usage type which can be specified via the
172.B \-t
173or
174.B \-T
175options to
176.BR mke2fs (8),
177respectively.
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500178.P
Theodore Ts'o3d438362008-02-19 08:32:58 -0500179The
180.B mke2fs
181program constructs a list of fs_types by concatenating the filesystem
182type (i.e., ext2, ext3, etc.) with the usage type list. For most
183configuration options,
184.B mke2fs
185will look for a subsection in the
186.I [fs_types]
187stanza corresponding with each entry in the constructed list, with later
188entries overriding earlier filesystem or usage types.
189For
190example, consider the following
191.B mke2fs.conf
192fragment:
193.P
194[defaults]
195.br
196 base_features = sparse_super,filetype,resize_inode,dir_index
197.br
198 blocksize = 4096
199.br
200 inode_size = 256
201.br
202 inode_ratio = 16384
203.br
204
205.br
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500206[fs_types]
207.br
Theodore Ts'o3d438362008-02-19 08:32:58 -0500208 ext3 = {
209.br
210 features = has_journal
211.br
212 }
213.br
214 ext4 = {
215.br
216 features = extents,flex_bg
217.br
218 inode_size = 256
219.br
220 }
221.br
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500222 small = {
223.br
224 blocksize = 1024
225.br
226 inode_ratio = 4096
227.br
228 }
229.br
230 floppy = {
231.br
Theodore Ts'o3d438362008-02-19 08:32:58 -0500232 features = ^resize_inode
233.br
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500234 blocksize = 1024
235.br
Theodore Ts'o3d438362008-02-19 08:32:58 -0500236 inode_size = 128
237.br
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500238 }
239.P
Theodore Ts'o3d438362008-02-19 08:32:58 -0500240If mke2fs started with a program name of
241.BR mke2fs.ext4 ,
242then the filesystem type of ext4 will be used. If the filesystem is
243smaller than 3 megabytes, and no usage type is specified, then
244.B mke2fs
245will use a default
246usage type of
247.IR floppy .
248This results in an fs_types list of "ext4, floppy". Both the ext4
249subsection and the floppy subsection define an
250.I inode_size
Theodore Ts'o711d3842008-09-07 14:08:40 -0400251relation, but since the later entries in the fs_types list supersede
Theodore Ts'o3d438362008-02-19 08:32:58 -0500252earlier ones, the configuration parameter for fs_types.floppy.inode_size
253will be used, so the filesystem will have an inode size of 128.
254.P
255The exception to this resolution is the
256.I features
257tag, which is specifies a set of changes to the features used by the
258filesystem, and which is cumulative. So in the above example, first
259the configuration relation defaults.base_features would enable an
260initial feature set with the sparse_super, filetype, resize_inode, and
261dir_index features enabled. Then configuration relation
262fs_types.ext4.features would enable the extents and flex_bg
263features, and finally the configuration relation
264fs_types.floppy.features would remove
265the resize_inode feature, resulting in a filesystem feature set
266consisting of the sparse_super, filetype, resize_inode, dir_index,
267extents_and flex_bg features.
268.P
Theodore Ts'ofac95252006-03-27 01:05:26 -0500269For each filesystem type, the following tags may be used in that
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500270fs_type's subsection:
271.TP
272.I base_features
Theodore Ts'o3d438362008-02-19 08:32:58 -0500273This relation specifies the features which are initially enabled for this
274filesystem type. Only one
275.I base_features
276will be used, so if there are multiple entries in the fs_types list
277whose subsections define the
278.I base_features
279relation, only the last will be used by
280.BR mke2fs (8).
281.TP
282.I features
283This relation specifies a comma-separated list of features edit
284requests which modify the feature set
285used by the newly constructed filesystem. The syntax is the same as the
286.B -O
287command-line option to
288.BR mke2fs (8);
289that is, a feature can be prefixed by a caret ('^') symbol to disable
290a named feature. Each
291.I feature
292relation specified in the fs_types list will be applied in the order
293found in the fs_types list.
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500294.TP
295.I default_features
296This relation specifies set of features which should be enabled or
Theodore Ts'o3d438362008-02-19 08:32:58 -0500297disabled after applying the features listed in the
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500298.I base_features
Theodore Ts'o3d438362008-02-19 08:32:58 -0500299and
300.I features
301relations. It may be overridden by the
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500302.B -O
303command-line option to
304.BR mke2fs (8).
305.TP
306.I blocksize
307This relation specifies the default blocksize if the user does not
308specify a blocksize on the command line.
309.TP
Theodore Ts'oa4396e92008-04-18 10:19:27 -0400310.I lazy_itable_init
311This relation is a boolean which specifies whether the inode table should
312be lazily initialized. It only has meaning if the uninit_bg feature is
313enabled. If lazy_itable_init is true and the uninit_bg feature is
314enabled, the inode table will
315not fully initialized by
316.BR mke2fs (8).
317This speeds up filesystem
Theodore Ts'o711d3842008-09-07 14:08:40 -0400318initialization noticeably, but it requires the kernel to finish
Theodore Ts'oa4396e92008-04-18 10:19:27 -0400319initializing the filesystem in the background when the filesystem is
320first mounted.
321.TP
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500322.I inode_ratio
323This relation specifies the default inode ratio if the user does not
324specify one on the command line.
Andreas Dilger067911a2006-07-15 22:08:20 -0400325.TP
326.I inode_size
327This relation specifies the default inode size if the user does not
328specify one on the command line.
Theodore Ts'o9ba40002008-04-22 08:27:01 -0400329.TP
Theodore Ts'od5f57d92008-08-29 21:39:36 -0400330.I hash_alg
331This relation specifies the default hash algorithm used for the
332new filesystems with hashed b-tree directories. Valid algorithms
333accepted are:
334.IR legacy ,
335.IR half_md4 ,
336and
337.IR tea .
338.TP
Theodore Ts'o9ba40002008-04-22 08:27:01 -0400339.I flex_bg_size
340This relation specifies the number of block goups that will be packed
341together to create one large virtual block group on an ext4 filesystem.
342This improves meta-data locality and performance on meta-data heavy
343workloads. The number of goups must be a power of 2 and may only be
344specified if the flex_bg filesystem feature is enabled.
Theodore Ts'o2d363582008-05-14 18:09:37 -0400345.I options
346This relation specifies additional extended options which should be
347treated by
348.BR mke2fs (8)
349as if they were prepended to the argument of the
350.B -E
351option. This can be used to configure the default extended options used
352by
353.BR mke2fs (8)
354on a per-filesystem type basis.
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500355.SH FILES
356.TP
357.I /etc/mke2fs.conf
358The configuration file for
359.BR mke2fs (8).
360.SH SEE ALSO
361.BR mke2fs (8)