blob: 04bffc5baa49065a5fa52650d14ac043c2171851 [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
139.I inode_ratio
140This relation specifies the default inode ratio if the user does not
141specify one on the command line, and the filesystem-type
142specific section of the configuration file does not specify a default
143inode ratio.
Andreas Dilger067911a2006-07-15 22:08:20 -0400144.TP
145.I inode_size
146This relation specifies the default inode size if the user does not
147specify one on the command line, and the filesystem-type
148specific section of the configuration file does not specify a default
149inode size.
Aneesh Kumar K.Vb626b392007-08-13 15:56:26 +0530150.TP
151.I undo_dir
152This relation specifies the directory where the undo file should be
153stored. It can be overriden via the
154.B E2FSPROGS_UNDO_DIR
155environemnt variable. If the directory location is set to the value
156.IR none ,
157.B mke2fs
158will not create an undo file.
Theodore Ts'ofac95252006-03-27 01:05:26 -0500159.SH THE [fs_types] STANZA
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500160Each tag in the
161.I [fs_types]
Theodore Ts'o3d438362008-02-19 08:32:58 -0500162stanza names a filesystem type or usage type which can be specified via the
163.B \-t
164or
165.B \-T
166options to
167.BR mke2fs (8),
168respectively.
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500169.P
Theodore Ts'o3d438362008-02-19 08:32:58 -0500170The
171.B mke2fs
172program constructs a list of fs_types by concatenating the filesystem
173type (i.e., ext2, ext3, etc.) with the usage type list. For most
174configuration options,
175.B mke2fs
176will look for a subsection in the
177.I [fs_types]
178stanza corresponding with each entry in the constructed list, with later
179entries overriding earlier filesystem or usage types.
180For
181example, consider the following
182.B mke2fs.conf
183fragment:
184.P
185[defaults]
186.br
187 base_features = sparse_super,filetype,resize_inode,dir_index
188.br
189 blocksize = 4096
190.br
191 inode_size = 256
192.br
193 inode_ratio = 16384
194.br
195
196.br
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500197[fs_types]
198.br
Theodore Ts'o3d438362008-02-19 08:32:58 -0500199 ext3 = {
200.br
201 features = has_journal
202.br
203 }
204.br
205 ext4 = {
206.br
207 features = extents,flex_bg
208.br
209 inode_size = 256
210.br
211 }
212.br
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500213 small = {
214.br
215 blocksize = 1024
216.br
217 inode_ratio = 4096
218.br
219 }
220.br
221 floppy = {
222.br
Theodore Ts'o3d438362008-02-19 08:32:58 -0500223 features = ^resize_inode
224.br
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500225 blocksize = 1024
226.br
Theodore Ts'o3d438362008-02-19 08:32:58 -0500227 inode_size = 128
228.br
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500229 }
230.P
Theodore Ts'o3d438362008-02-19 08:32:58 -0500231If mke2fs started with a program name of
232.BR mke2fs.ext4 ,
233then the filesystem type of ext4 will be used. If the filesystem is
234smaller than 3 megabytes, and no usage type is specified, then
235.B mke2fs
236will use a default
237usage type of
238.IR floppy .
239This results in an fs_types list of "ext4, floppy". Both the ext4
240subsection and the floppy subsection define an
241.I inode_size
242relation, but since the later entries in the fs_types list supercede
243earlier ones, the configuration parameter for fs_types.floppy.inode_size
244will be used, so the filesystem will have an inode size of 128.
245.P
246The exception to this resolution is the
247.I features
248tag, which is specifies a set of changes to the features used by the
249filesystem, and which is cumulative. So in the above example, first
250the configuration relation defaults.base_features would enable an
251initial feature set with the sparse_super, filetype, resize_inode, and
252dir_index features enabled. Then configuration relation
253fs_types.ext4.features would enable the extents and flex_bg
254features, and finally the configuration relation
255fs_types.floppy.features would remove
256the resize_inode feature, resulting in a filesystem feature set
257consisting of the sparse_super, filetype, resize_inode, dir_index,
258extents_and flex_bg features.
259.P
Theodore Ts'ofac95252006-03-27 01:05:26 -0500260For each filesystem type, the following tags may be used in that
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500261fs_type's subsection:
262.TP
263.I base_features
Theodore Ts'o3d438362008-02-19 08:32:58 -0500264This relation specifies the features which are initially enabled for this
265filesystem type. Only one
266.I base_features
267will be used, so if there are multiple entries in the fs_types list
268whose subsections define the
269.I base_features
270relation, only the last will be used by
271.BR mke2fs (8).
272.TP
273.I features
274This relation specifies a comma-separated list of features edit
275requests which modify the feature set
276used by the newly constructed filesystem. The syntax is the same as the
277.B -O
278command-line option to
279.BR mke2fs (8);
280that is, a feature can be prefixed by a caret ('^') symbol to disable
281a named feature. Each
282.I feature
283relation specified in the fs_types list will be applied in the order
284found in the fs_types list.
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500285.TP
286.I default_features
287This relation specifies set of features which should be enabled or
Theodore Ts'o3d438362008-02-19 08:32:58 -0500288disabled after applying the features listed in the
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500289.I base_features
Theodore Ts'o3d438362008-02-19 08:32:58 -0500290and
291.I features
292relations. It may be overridden by the
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500293.B -O
294command-line option to
295.BR mke2fs (8).
296.TP
297.I blocksize
298This relation specifies the default blocksize if the user does not
299specify a blocksize on the command line.
300.TP
Theodore Ts'oa4396e92008-04-18 10:19:27 -0400301.I lazy_itable_init
302This relation is a boolean which specifies whether the inode table should
303be lazily initialized. It only has meaning if the uninit_bg feature is
304enabled. If lazy_itable_init is true and the uninit_bg feature is
305enabled, the inode table will
306not fully initialized by
307.BR mke2fs (8).
308This speeds up filesystem
309initialization noitceably, but it requires the kernel to finish
310initializing the filesystem in the background when the filesystem is
311first mounted.
312.TP
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500313.I inode_ratio
314This relation specifies the default inode ratio if the user does not
315specify one on the command line.
Andreas Dilger067911a2006-07-15 22:08:20 -0400316.TP
317.I inode_size
318This relation specifies the default inode size if the user does not
319specify one on the command line.
Theodore Ts'o9ba40002008-04-22 08:27:01 -0400320.TP
321.I flex_bg_size
322This relation specifies the number of block goups that will be packed
323together to create one large virtual block group on an ext4 filesystem.
324This improves meta-data locality and performance on meta-data heavy
325workloads. The number of goups must be a power of 2 and may only be
326specified if the flex_bg filesystem feature is enabled.
Theodore Ts'o2d363582008-05-14 18:09:37 -0400327.I options
328This relation specifies additional extended options which should be
329treated by
330.BR mke2fs (8)
331as if they were prepended to the argument of the
332.B -E
333option. This can be used to configure the default extended options used
334by
335.BR mke2fs (8)
336on a per-filesystem type basis.
Theodore Ts'o9dc6ad12006-03-23 22:00:01 -0500337.SH FILES
338.TP
339.I /etc/mke2fs.conf
340The configuration file for
341.BR mke2fs (8).
342.SH SEE ALSO
343.BR mke2fs (8)