]> git.ipfire.org Git - thirdparty/mdadm.git/blame - mdadm.8.in
Detail: clean up handing of the 'info' we load from superblock.
[thirdparty/mdadm.git] / mdadm.8.in
CommitLineData
52826846 1.\" -*- nroff -*-
e43d0cda
NB
2.\" Copyright Neil Brown and others.
3.\" This program is free software; you can redistribute it and/or modify
4.\" it under the terms of the GNU General Public License as published by
5.\" the Free Software Foundation; either version 2 of the License, or
6.\" (at your option) any later version.
7.\" See file COPYING in distribution for details.
a31c140f 8.TH MDADM 8 "" v3.1.2
52826846 9.SH NAME
9a9dab36 10mdadm \- manage MD devices
cd29a5c8 11.I aka
93e790af 12Linux Software RAID
cd29a5c8 13
52826846
NB
14.SH SYNOPSIS
15
e0d19036 16.BI mdadm " [mode] <raiddevice> [options] <component-devices>"
52826846 17
2ae555c3 18.SH DESCRIPTION
52826846 19RAID devices are virtual devices created from two or more
e0fe762a 20real block devices. This allows multiple devices (typically disk
35cc5be4 21drives or partitions thereof) to be combined into a single device to
cd29a5c8 22hold (for example) a single filesystem.
2d465520 23Some RAID levels include redundancy and so can survive some degree of
cd29a5c8
NB
24device failure.
25
2d465520
NB
26Linux Software RAID devices are implemented through the md (Multiple
27Devices) device driver.
cd29a5c8
NB
28
29Currently, Linux supports
30.B LINEAR
31md devices,
32.B RAID0
33(striping),
34.B RAID1
35(mirroring),
d013a55e
NB
36.BR RAID4 ,
37.BR RAID5 ,
98c6faba 38.BR RAID6 ,
1a7dfc35 39.BR RAID10 ,
b5e64645 40.BR MULTIPATH ,
90c8d668 41.BR FAULTY ,
cd29a5c8 42and
90c8d668 43.BR CONTAINER .
d013a55e 44
a9d69660
NB
45.B MULTIPATH
46is not a Software RAID mechanism, but does involve
93e790af 47multiple devices:
d013a55e 48each device is a path to one common physical storage device.
9652457e
N
49New installations should not use md/multipath as it is not well
50supported and has no ongoing development. Use the Device Mapper based
51multipath-tools instead.
d013a55e 52
a9d69660
NB
53.B FAULTY
54is also not true RAID, and it only involves one device. It
b5e64645 55provides a layer over a true device that can be used to inject faults.
52826846 56
4cce4069 57.B CONTAINER
8fd8d9c4
N
58is different again. A
59.B CONTAINER
60is a collection of devices that are
90c8d668
N
61managed as a set. This is similar to the set of devices connected to
62a hardware RAID controller. The set of devices may contain a number
9652457e 63of different RAID arrays each utilising some (or all) of the blocks from a
90c8d668 64number of the devices in the set. For example, two devices in a 5-device set
9652457e 65might form a RAID1 using the whole devices. The remaining three might
90c8d668
N
66have a RAID5 over the first half of each device, and a RAID0 over the
67second half.
68
8fd8d9c4
N
69With a
70.BR CONTAINER ,
71there is one set of metadata that describes all of
72the arrays in the container. So when
73.I mdadm
74creates a
75.B CONTAINER
9652457e
N
76device, the device just represents the metadata. Other normal arrays (RAID1
77etc) can be created inside the container.
52826846
NB
78
79.SH MODES
8382f19b 80mdadm has several major modes of operation:
cd29a5c8
NB
81.TP
82.B Assemble
93e790af 83Assemble the components of a previously created
e0fe762a 84array into an active array. Components can be explicitly given
2ae555c3 85or can be searched for.
51ac42e3 86.I mdadm
cd29a5c8
NB
87checks that the components
88do form a bona fide array, and can, on request, fiddle superblock
89information so as to assemble a faulty array.
90
91.TP
92.B Build
e0fe762a 93Build an array that doesn't have per-device metadata (superblocks). For these
a9d69660
NB
94sorts of arrays,
95.I mdadm
96cannot differentiate between initial creation and subsequent assembly
97of an array. It also cannot perform any checks that appropriate
93e790af 98components have been requested. Because of this, the
a9d69660
NB
99.B Build
100mode should only be used together with a complete understanding of
101what you are doing.
cd29a5c8
NB
102
103.TP
104.B Create
e0fe762a
N
105Create a new array with per-device metadata (superblocks).
106Appropriate metadata is written to each device, and then the array
107comprising those devices is activated. A 'resync' process is started
108to make sure that the array is consistent (e.g. both sides of a mirror
109contain the same data) but the content of the device is left otherwise
110untouched.
111The array can be used as soon as it has been created. There is no
112need to wait for the initial resync to finish.
cd29a5c8 113
cd29a5c8
NB
114.TP
115.B "Follow or Monitor"
5787fa49 116Monitor one or more md devices and act on any state changes. This is
e0fe762a
N
117only meaningful for RAID1, 4, 5, 6, 10 or multipath arrays, as
118only these have interesting state. RAID0 or Linear never have
98c6faba 119missing, spare, or failed drives, so there is nothing to monitor.
5787fa49 120
dd0781e5
NB
121.TP
122.B "Grow"
123Grow (or shrink) an array, or otherwise reshape it in some way.
124Currently supported growth options including changing the active size
93e790af 125of component devices and changing the number of active devices in RAID
f24e2d6c
N
126levels 1/4/5/6, changing the RAID level between 1, 5, and 6, changing
127the chunk size and layout for RAID5 and RAID5, as well as adding or
128removing a write-intent bitmap.
cd29a5c8 129
8382f19b
NB
130.TP
131.B "Incremental Assembly"
132Add a single device to an appropriate array. If the addition of the
133device makes the array runnable, the array will be started.
134This provides a convenient interface to a
135.I hot-plug
136system. As each device is detected,
137.I mdadm
138has a chance to include it in some array as appropriate.
29ba4804
N
139Optionally, when the
140.I \-\-fail
141flag is passed in we will remove the device from any active array
142instead of adding it.
9652457e 143
8fd8d9c4
N
144If a
145.B CONTAINER
146is passed to
147.I mdadm
148in this mode, then any arrays within that container will be assembled
149and started.
8382f19b 150
2ae555c3
NB
151.TP
152.B Manage
153This is for doing things to specific components of an array such as
154adding new spares and removing faulty devices.
155
156.TP
157.B Misc
158This is an 'everything else' mode that supports operations on active
159arrays, operations on component devices such as erasing old superblocks, and
160information gathering operations.
e43d0cda
NB
161.\"This mode allows operations on independent devices such as examine MD
162.\"superblocks, erasing old superblocks and stopping active arrays.
2ae555c3 163
1f48664b
NB
164.TP
165.B Auto-detect
166This mode does not act on a specific device or array, but rather it
167requests the Linux Kernel to activate any auto-detected arrays.
52826846
NB
168.SH OPTIONS
169
2ae555c3 170.SH Options for selecting a mode are:
52826846 171
cd29a5c8 172.TP
7e23fc43 173.BR \-A ", " \-\-assemble
2d465520 174Assemble a pre-existing array.
52826846 175
cd29a5c8 176.TP
7e23fc43 177.BR \-B ", " \-\-build
cd29a5c8 178Build a legacy array without superblocks.
52826846 179
cd29a5c8 180.TP
7e23fc43 181.BR \-C ", " \-\-create
cd29a5c8 182Create a new array.
52826846 183
cd29a5c8 184.TP
7e23fc43 185.BR \-F ", " \-\-follow ", " \-\-monitor
cd29a5c8
NB
186Select
187.B Monitor
188mode.
52826846 189
dd0781e5 190.TP
7e23fc43 191.BR \-G ", " \-\-grow
dd0781e5 192Change the size or shape of an active array.
8382f19b
NB
193
194.TP
1f48664b 195.BR \-I ", " \-\-incremental
29ba4804 196Add/remove a single device to/from an appropriate array, and possibly start the array.
8382f19b 197
1f48664b
NB
198.TP
199.B \-\-auto-detect
200Request that the kernel starts any auto-detected arrays. This can only
201work if
202.I md
203is compiled into the kernel \(em not if it is a module.
204Arrays can be auto-detected by the kernel if all the components are in
205primary MS-DOS partitions with partition type
e0fe762a
N
206.BR FD ,
207and all use v0.90 metadata.
1f48664b
NB
208In-kernel autodetect is not recommended for new installations. Using
209.I mdadm
210to detect and assemble arrays \(em possibly in an
211.I initrd
212\(em is substantially more flexible and should be preferred.
213
2ae555c3
NB
214.P
215If a device is given before any options, or if the first option is
7e23fc43
PS
216.BR \-\-add ,
217.BR \-\-fail ,
2ae555c3 218or
7e23fc43 219.BR \-\-remove ,
e0fe762a 220then the MANAGE mode is assumed.
2ae555c3
NB
221Anything other than these will cause the
222.B Misc
223mode to be assumed.
dd0781e5 224
2ae555c3 225.SH Options that are not mode-specific are:
e793c2e5 226
cd29a5c8 227.TP
7e23fc43 228.BR \-h ", " \-\-help
a9d69660 229Display general help message or, after one of the above options, a
93e790af 230mode-specific help message.
56eedc1a
NB
231
232.TP
7e23fc43 233.B \-\-help\-options
56eedc1a
NB
234Display more detailed help about command line parsing and some commonly
235used options.
52826846 236
cd29a5c8 237.TP
7e23fc43 238.BR \-V ", " \-\-version
9a9dab36 239Print version information for mdadm.
52826846 240
cd29a5c8 241.TP
7e23fc43 242.BR \-v ", " \-\-verbose
22892d56
NB
243Be more verbose about what is happening. This can be used twice to be
244extra-verbose.
a9d69660 245The extra verbosity currently only affects
7e23fc43 246.B \-\-detail \-\-scan
22892d56 247and
7e23fc43 248.BR "\-\-examine \-\-scan" .
52826846 249
dab6685f 250.TP
7e23fc43 251.BR \-q ", " \-\-quiet
dab6685f 252Avoid printing purely informative messages. With this,
51ac42e3 253.I mdadm
dab6685f
NB
254will be silent unless there is something really important to report.
255
e0d19036 256.TP
7e23fc43 257.BR \-f ", " \-\-force
93e790af 258Be more forceful about certain operations. See the various modes for
e0d19036
NB
259the exact meaning of this option in different contexts.
260
261.TP
7e23fc43 262.BR \-c ", " \-\-config=
2ae555c3
NB
263Specify the config file. Default is to use
264.BR /etc/mdadm.conf ,
93e790af 265or if that is missing then
2ae555c3 266.BR /etc/mdadm/mdadm.conf .
5787fa49 267If the config file given is
93e790af 268.B "partitions"
5787fa49
NB
269then nothing will be read, but
270.I mdadm
271will act as though the config file contained exactly
8fd8d9c4 272.B "DEVICE partitions containers"
5787fa49
NB
273and will read
274.B /proc/partitions
8fd8d9c4
N
275to find a list of devices to scan, and
276.B /proc/mdstat
277to find a list of containers to examine.
d013a55e 278If the word
93e790af 279.B "none"
d013a55e
NB
280is given for the config file, then
281.I mdadm
282will act as though the config file were empty.
e0d19036
NB
283
284.TP
7e23fc43 285.BR \-s ", " \-\-scan
93e790af 286Scan config file or
e0d19036
NB
287.B /proc/mdstat
288for missing information.
289In general, this option gives
51ac42e3 290.I mdadm
93e790af
SW
291permission to get any missing information (like component devices,
292array devices, array identities, and alert destination) from the
293configuration file (see previous option);
294one exception is MISC mode when using
7e23fc43 295.B \-\-detail
e0d19036 296or
93e790af 297.B \-\-stop,
e0d19036 298in which case
7e23fc43 299.B \-\-scan
e0d19036
NB
300says to get a list of array devices from
301.BR /proc/mdstat .
302
570c0542 303.TP
d16c7af6 304.BR \-e ", " \-\-metadata=
e0fe762a 305Declare the style of RAID metadata (superblock) to be used. The
26f467a9 306default is {DEFAULT_METADATA} for
7e23fc43 307.BR \-\-create ,
53e8b987 308and to guess for other operations.
2790ffe3
GB
309The default can be overridden by setting the
310.B metadata
311value for the
312.B CREATE
313keyword in
314.BR mdadm.conf .
570c0542
NB
315
316Options are:
317.RS
26f467a9 318.ie '{DEFAULT_METADATA}'0.90'
319.IP "0, 0.90, default"
320.el
7d5c3964 321.IP "0, 0.90"
26f467a9 322..
570c0542 323Use the original 0.90 format superblock. This format limits arrays to
93e790af 32428 component devices and limits component devices of levels 1 and
570c0542 325greater to 2 terabytes.
26f467a9 326.ie '{DEFAULT_METADATA}'0.90'
327.IP "1, 1.0, 1.1, 1.2"
328.el
7d5c3964 329.IP "1, 1.0, 1.1, 1.2 default"
26f467a9 330..
570c0542 331Use the new version-1 format superblock. This has few restrictions.
93e790af 332The different sub-versions store the superblock at different locations
570c0542 333on the device, either at the end (for 1.0), at the start (for 1.1) or
26f467a9 3344K from the start (for 1.2). "1" is equivalent to "1.0".
335'if '{DEFAULT_METADATA}'1.2' "default" is equivalent to "1.2".
8fd8d9c4 336.IP ddf
e0fe762a
N
337Use the "Industry Standard" DDF (Disk Data Format) format defined by
338SNIA.
339When creating a DDF array a
8fd8d9c4
N
340.B CONTAINER
341will be created, and normal arrays can be created in that container.
342.IP imsm
4cce4069 343Use the Intel(R) Matrix Storage Manager metadata format. This creates a
8fd8d9c4 344.B CONTAINER
4cce4069
DW
345which is managed in a similar manner to DDF, and is supported by an
346option-rom on some platforms:
347.IP
348.B http://www.intel.com/design/chipsets/matrixstorage_sb.htm
349.PP
570c0542
NB
350.RE
351
41a3b72a 352.TP
7e23fc43 353.B \-\-homehost=
35cc5be4 354This will override any
41a3b72a 355.B HOMEHOST
93e790af 356setting in the config file and provides the identity of the host which
41a3b72a
NB
357should be considered the home for any arrays.
358
359When creating an array, the
360.B homehost
e0fe762a 361will be recorded in the metadata. For version-1 superblocks, it will
93e790af 362be prefixed to the array name. For version-0.90 superblocks, part of
41a3b72a
NB
363the SHA1 hash of the hostname will be stored in the later half of the
364UUID.
365
366When reporting information about an array, any array which is tagged
367for the given homehost will be reported as such.
368
369When using Auto-Assemble, only arrays tagged for the given homehost
0ac91628 370will be allowed to use 'local' names (i.e. not ending in '_' followed
e0fe762a
N
371by a digit string). See below under
372.BR "Auto Assembly" .
41a3b72a 373
2ae555c3
NB
374.SH For create, build, or grow:
375
376.TP
7e23fc43 377.BR \-n ", " \-\-raid\-devices=
2ae555c3
NB
378Specify the number of active devices in the array. This, plus the
379number of spare devices (see below) must equal the number of
380.I component-devices
381(including "\fBmissing\fP" devices)
382that are listed on the command line for
e0fe762a 383.BR \-\-create .
2ae555c3
NB
384Setting a value of 1 is probably
385a mistake and so requires that
7e23fc43 386.B \-\-force
2ae555c3 387be specified first. A value of 1 will then be allowed for linear,
e0fe762a 388multipath, RAID0 and RAID1. It is never allowed for RAID4, RAID5 or RAID6.
2ae555c3
NB
389.br
390This number can only be changed using
7e23fc43 391.B \-\-grow
e0fe762a
N
392for RAID1, RAID4, RAID5 and RAID6 arrays, and only on kernels which provide
393the necessary support.
2ae555c3
NB
394
395.TP
7e23fc43 396.BR \-x ", " \-\-spare\-devices=
2ae555c3
NB
397Specify the number of spare (eXtra) devices in the initial array.
398Spares can also be added
399and removed later. The number of component devices listed
e0fe762a 400on the command line must equal the number of RAID devices plus the
2ae555c3
NB
401number of spare devices.
402
2ae555c3 403.TP
7e23fc43 404.BR \-z ", " \-\-size=
e0fe762a 405Amount (in Kibibytes) of space to use from each drive in RAID levels 1/4/5/6.
2ae555c3
NB
406This must be a multiple of the chunk size, and must leave about 128Kb
407of space at the end of the drive for the RAID superblock.
408If this is not specified
409(as it normally is not) the smallest drive (or partition) sets the
410size, though if there is a variance among the drives of greater than 1%, a warning is
411issued.
412
413This value can be set with
7e23fc43 414.B \-\-grow
e0fe762a 415for RAID level 1/4/5/6. If the array was created with a size smaller
2ae555c3
NB
416than the currently active drives, the extra space can be accessed
417using
7e23fc43 418.BR \-\-grow .
2ae555c3
NB
419The size can be given as
420.B max
421which means to choose the largest size that fits on all current drives.
52826846 422
8fd8d9c4
N
423This value can not be used with
424.B CONTAINER
425metadata such as DDF and IMSM.
426
f24e2d6c
N
427.TP
428.BR \-Z ", " \-\-array-size=
429This is only meaningful with
430.B \-\-grow
431and its effect is not persistent: when the array is stopped an
432restarted the default array size will be restored.
433
434Setting the array-size causes the array to appear smaller to programs
435that access the data. This is particularly needed before reshaping an
436array so that it will be smaller. As the reshape is not reversible,
437but setting the size with
438.B \-\-array-size
439is, it is required that the array size is reduced as appropriate
440before the number of devices in the array is reduced.
441
cd29a5c8 442.TP
7e23fc43 443.BR \-c ", " \-\-chunk=
5f175898
N
444Specify chunk size of kibibytes. The default when creating an
445array is 512KB. To ensure compatibility with earlier versions, the
446default when Building and array with no persistent metadata is 64KB.
e0fe762a 447This is only meaningful for RAID0, RAID4, RAID5, RAID6, and RAID10.
52826846 448
cd29a5c8 449.TP
7e23fc43 450.BR \-\-rounding=
e0fe762a
N
451Specify rounding factor for a Linear array. The size of each
452component will be rounded down to a multiple of this size.
453This is a synonym for
454.B \-\-chunk
455but highlights the different meaning for Linear as compared to other
5f175898
N
456RAID levels. The default is 64K if a kernel earlier than 2.6.16 is in
457use, and is 0K (i.e. no rounding) in later kernels.
52826846 458
cd29a5c8 459.TP
7e23fc43 460.BR \-l ", " \-\-level=
e0fe762a 461Set RAID level. When used with
7e23fc43 462.BR \-\-create ,
98c6faba 463options are: linear, raid0, 0, stripe, raid1, 1, mirror, raid4, 4,
8fd8d9c4
N
464raid5, 5, raid6, 6, raid10, 10, multipath, mp, faulty, container.
465Obviously some of these are synonymous.
466
467When a
468.B CONTAINER
469metadata type is requested, only the
470.B container
471level is permitted, and it does not need to be explicitly given.
aa88f531
NB
472
473When used with
7e23fc43 474.BR \-\-build ,
a9d69660 475only linear, stripe, raid0, 0, raid1, multipath, mp, and faulty are valid.
52826846 476
fd547b50
N
477Can be used with
478.B \-\-grow
479to change the RAID level in some cases. See LEVEL CHANGES below.
2ae555c3 480
cd29a5c8 481.TP
7e23fc43 482.BR \-p ", " \-\-layout=
f24e2d6c
N
483This option configures the fine details of data layout for RAID5, RAID6,
484and RAID10 arrays, and controls the failure modes for
1a7dfc35
NB
485.IR faulty .
486
e0fe762a 487The layout of the RAID5 parity block can be one of
7e23fc43
PS
488.BR left\-asymmetric ,
489.BR left\-symmetric ,
490.BR right\-asymmetric ,
491.BR right\-symmetric ,
53e8b987
PS
492.BR la ", " ra ", " ls ", " rs .
493The default is
7e23fc43 494.BR left\-symmetric .
52826846 495
e0fe762a
N
496It is also possibly to cause RAID5 to use a RAID4-like layout by
497choosing
498.BR parity\-first ,
499or
500.BR parity\-last .
501
502Finally for RAID5 there are DDF\-compatible layouts,
503.BR ddf\-zero\-restart ,
504.BR ddf\-N\-restart ,
505and
506.BR ddf\-N\-continue .
507
508These same layouts are available for RAID6. There are also 4 layouts
509that will provide an intermediate stage for converting between RAID5
510and RAID6. These provide a layout which is identical to the
511corresponding RAID5 layout on the first N\-1 devices, and has the 'Q'
512syndrome (the second 'parity' block used by RAID6) on the last device.
513These layouts are:
514.BR left\-symmetric\-6 ,
515.BR right\-symmetric\-6 ,
516.BR left\-asymmetric\-6 ,
517.BR right\-asymmetric\-6 ,
518and
10adfe9a 519.BR parity\-first\-6 .
e0fe762a 520
93e790af
SW
521When setting the failure mode for level
522.I faulty,
1a7dfc35 523the options are:
7e23fc43
PS
524.BR write\-transient ", " wt ,
525.BR read\-transient ", " rt ,
526.BR write\-persistent ", " wp ,
527.BR read\-persistent ", " rp ,
528.BR write\-all ,
529.BR read\-fixable ", " rf ,
53e8b987 530.BR clear ", " flush ", " none .
b5e64645 531
93e790af 532Each failure mode can be followed by a number, which is used as a period
b5e64645
NB
533between fault generation. Without a number, the fault is generated
534once on the first relevant request. With a number, the fault will be
93e790af 535generated after that many requests, and will continue to be generated
b5e64645
NB
536every time the period elapses.
537
538Multiple failure modes can be current simultaneously by using the
7e23fc43 539.B \-\-grow
53e8b987 540option to set subsequent failure modes.
b5e64645
NB
541
542"clear" or "none" will remove any pending or periodic failure modes,
2ae555c3 543and "flush" will clear any persistent faults.
b5e64645 544
6f9a21a7 545Finally, the layout options for RAID10 are one of 'n', 'o' or 'f' followed
93e790af 546by a small number. The default is 'n2'. The supported options are:
1a7dfc35 547
93e790af 548.I 'n'
e0fe762a 549signals 'near' copies. Multiple copies of one data block are at
b578481c
NB
550similar offsets in different devices.
551
93e790af 552.I 'o'
b578481c
NB
553signals 'offset' copies. Rather than the chunks being duplicated
554within a stripe, whole stripes are duplicated but are rotated by one
555device so duplicate blocks are on different devices. Thus subsequent
556copies of a block are in the next drive, and are one chunk further
557down.
558
93e790af 559.I 'f'
1a7dfc35 560signals 'far' copies
93e790af 561(multiple copies have very different offsets).
e0fe762a 562See md(4) for more detail about 'near', 'offset', and 'far'.
1a7dfc35
NB
563
564The number is the number of copies of each datablock. 2 is normal, 3
565can be useful. This number can be at most equal to the number of
566devices in the array. It does not need to divide evenly into that
567number (e.g. it is perfectly legal to have an 'n2' layout for an array
568with an odd number of devices).
569
f24e2d6c
N
570When an array is converted between RAID5 and RAID6 an intermediate
571RAID6 layout is used in which the second parity block (Q) is always on
572the last device. To convert a RAID5 to RAID6 and leave it in this new
573layout (which does not require re-striping) use
574.BR \-\-layout=preserve .
575This will try to avoid any restriping.
576
577The converse of this is
578.B \-\-layout=normalise
579which will change a non-standard RAID6 layout into a more standard
580arrangement.
581
cd29a5c8 582.TP
7e23fc43 583.BR \-\-parity=
53e8b987 584same as
7e23fc43 585.B \-\-layout
53e8b987 586(thus explaining the p of
7e23fc43 587.BR \-p ).
52826846 588
e793c2e5 589.TP
7e23fc43 590.BR \-b ", " \-\-bitmap=
e793c2e5 591Specify a file to store a write-intent bitmap in. The file should not
53e8b987 592exist unless
7e23fc43 593.B \-\-force
53e8b987 594is also given. The same file should be provided
2ae555c3 595when assembling the array. If the word
93e790af 596.B "internal"
2ae555c3
NB
597is given, then the bitmap is stored with the metadata on the array,
598and so is replicated on all devices. If the word
93e790af 599.B "none"
2ae555c3 600is given with
7e23fc43 601.B \-\-grow
2ae555c3 602mode, then any bitmap that is present is removed.
e793c2e5 603
2ae555c3
NB
604To help catch typing errors, the filename must contain at least one
605slash ('/') if it is a real file (not 'internal' or 'none').
606
607Note: external bitmaps are only known to work on ext2 and ext3.
608Storing bitmap files on other filesystems may result in serious problems.
e793c2e5 609
cd29a5c8 610.TP
7e23fc43 611.BR \-\-bitmap\-chunk=
e0fe762a 612Set the chunksize of the bitmap. Each bit corresponds to that many
1bfdbe01
NB
613Kilobytes of storage.
614When using a file based bitmap, the default is to use the smallest
93e790af 615size that is at-least 4 and requires no more than 2^21 chunks.
2ae555c3
NB
616When using an
617.B internal
b8ab2a50
N
618bitmap, the chunksize defaults to 64Meg, or larger if necessary to
619fit the bitmap into the available space.
5787fa49 620
cd29a5c8 621.TP
7e23fc43 622.BR \-W ", " \-\-write\-mostly
e0fe762a 623subsequent devices listed in a
7e23fc43
PS
624.BR \-\-build ,
625.BR \-\-create ,
2ae555c3 626or
7e23fc43 627.B \-\-add
2ae555c3
NB
628command will be flagged as 'write-mostly'. This is valid for RAID1
629only and means that the 'md' driver will avoid reading from these
630devices if at all possible. This can be useful if mirroring over a
631slow link.
52826846 632
2ae555c3 633.TP
7e23fc43 634.BR \-\-write\-behind=
2ae555c3 635Specify that write-behind mode should be enabled (valid for RAID1
e0fe762a
N
636only). If an argument is specified, it will set the maximum number
637of outstanding writes allowed. The default value is 256.
2ae555c3
NB
638A write-intent bitmap is required in order to use write-behind
639mode, and write-behind is only attempted on drives marked as
640.IR write-mostly .
dd0781e5
NB
641
642.TP
7e23fc43 643.BR \-\-assume\-clean
dd0781e5
NB
644Tell
645.I mdadm
47d79ef8
NB
646that the array pre-existed and is known to be clean. It can be useful
647when trying to recover from a major failure as you can be sure that no
648data will be affected unless you actually write to the array. It can
649also be used when creating a RAID1 or RAID10 if you want to avoid the
b3f1c093 650initial resync, however this practice \(em while normally safe \(em is not
e0fe762a 651recommended. Use this only if you really know what you are doing.
6acad481
ME
652.IP
653When the devices that will be part of a new array were filled
654with zeros before creation the operator knows the array is
655actually clean. If that is the case, such as after running
656badblocks, this argument can be used to tell mdadm the
657facts the operator knows.
dd0781e5 658
2ae555c3 659.TP
7e23fc43 660.BR \-\-backup\-file=
53e8b987 661This is needed when
7e23fc43 662.B \-\-grow
53e8b987 663is used to increase the number of
e0fe762a
N
664raid-devices in a RAID5 if there are no spare devices available.
665See the GROW MODE section below on RAID\-DEVICES CHANGES. The file
666should be stored on a separate device, not on the RAID array being
667reshaped.
2ae555c3 668
84e11361
N
669.TP
670.BR \-\-array-size= ", " \-Z
671Set the size of the array which is seen by users of the device such as
672filesystems. This can be less that the real size, but never greater.
673The size set this way does not persist across restarts of the array.
674
675This is most useful when reducing the number of devices in a RAID5 or
676RAID6. Such arrays require the array-size to be reduced before a
677reshape can be performed that reduces the real size.
678
679A value of
680.B max
681restores the apparent size of the array to be whatever the real
682amount of available space is.
683
947fd4dd 684.TP
7e23fc43 685.BR \-N ", " \-\-name=
947fd4dd
NB
686Set a
687.B name
688for the array. This is currently only effective when creating an
e0fe762a
N
689array with a version-1 superblock, or an array in a DDF container.
690The name is a simple textual string that can be used to identify array
691components when assembling. If name is needed but not specified, it
692is taken from the basename of the device that is being created.
693e.g. when creating
694.I /dev/md/home
695the
696.B name
697will default to
698.IR home .
947fd4dd 699
dd0781e5 700.TP
7e23fc43 701.BR \-R ", " \-\-run
dd0781e5
NB
702Insist that
703.I mdadm
704run the array, even if some of the components
705appear to be active in another array or filesystem. Normally
706.I mdadm
707will ask for confirmation before including such components in an
708array. This option causes that question to be suppressed.
709
710.TP
7e23fc43 711.BR \-f ", " \-\-force
dd0781e5
NB
712Insist that
713.I mdadm
714accept the geometry and layout specified without question. Normally
715.I mdadm
716will not allow creation of an array with only one device, and will try
e0fe762a 717to create a RAID5 array with one missing drive (as this makes the
dd0781e5 718initial resync work faster). With
7e23fc43 719.BR \-\-force ,
dd0781e5
NB
720.I mdadm
721will not try to be so clever.
722
723.TP
257c1dc2
N
724.BR \-a ", " "\-\-auto{=yes,md,mdp,part,p}{NN}"
725Instruct mdadm how to create the device file if needed, possibly allocating
48f7b27a 726an unused minor number. "md" causes a non-partitionable array
257c1dc2
N
727to be used (though since Linux 2.6.28, these array devices are in fact
728partitionable). "mdp", "part" or "p" causes a partitionable array (2.6 and
2ae555c3 729later) to be used. "yes" requires the named md device to have
f9c25f1d 730a 'standard' format, and the type and minor number will be determined
257c1dc2
N
731from this. With mdadm 3.0, device creation is normally left up to
732.I udev
733so this option is unlikely to be needed.
734See DEVICE NAMES below.
48f7b27a 735
a9d69660 736The argument can also come immediately after
7e23fc43 737"\-a". e.g. "\-ap".
dd0781e5 738
53e8b987 739If
7e23fc43 740.B \-\-auto
53e8b987 741is not given on the command line or in the config file, then
75723446 742the default will be
7e23fc43 743.BR \-\-auto=yes .
75723446 744
1337546d 745If
7e23fc43 746.B \-\-scan
1337546d
NB
747is also given, then any
748.I auto=
35cc5be4 749entries in the config file will override the
7e23fc43 750.B \-\-auto
1337546d
NB
751instruction given on the command line.
752
dd0781e5
NB
753For partitionable arrays,
754.I mdadm
755will create the device file for the whole array and for the first 4
756partitions. A different number of partitions can be specified at the
757end of this option (e.g.
7e23fc43 758.BR \-\-auto=p7 ).
2ae555c3 759If the device name ends with a digit, the partition names add a 'p',
e0fe762a
N
760and a number, e.g.
761.IR /dev/md/home1p3 .
762If there is no trailing digit, then the partition names just have a
763number added, e.g.
764.IR /dev/md/scratch3 .
dd0781e5 765
48f7b27a
NB
766If the md device name is in a 'standard' format as described in DEVICE
767NAMES, then it will be created, if necessary, with the appropriate
e0fe762a
N
768device number based on that name. If the device name is not in one of these
769formats, then a unused device number will be allocated. The device
48f7b27a
NB
770number will be considered unused if there is no active array for that
771number, and there is no entry in /dev for that number and with a
e0fe762a 772non-standard name. Names that are not in 'standard' format are only
8fd8d9c4
N
773allowed in "/dev/md/".
774
f24e2d6c 775.ig XX
e0fe762a
N
776.\".TP
777.\".BR \-\-symlink = no
778.\"Normally when
779.\".B \-\-auto
780.\"causes
781.\".I mdadm
782.\"to create devices in
783.\".B /dev/md/
784.\"it will also create symlinks from
785.\".B /dev/
786.\"with names starting with
787.\".B md
788.\"or
789.\".BR md_ .
790.\"Use
791.\".B \-\-symlink=no
792.\"to suppress this, or
793.\".B \-\-symlink=yes
794.\"to enforce this even if it is suppressing
795.\".IR mdadm.conf .
796.\"
f24e2d6c 797.XX
38098016 798
52826846
NB
799.SH For assemble:
800
cd29a5c8 801.TP
7e23fc43 802.BR \-u ", " \-\-uuid=
e0fe762a 803uuid of array to assemble. Devices which don't have this uuid are
cd29a5c8
NB
804excluded
805
806.TP
7e23fc43 807.BR \-m ", " \-\-super\-minor=
cd29a5c8
NB
808Minor number of device that array was created for. Devices which
809don't have this minor number are excluded. If you create an array as
2d465520 810/dev/md1, then all superblocks will contain the minor number 1, even if
cd29a5c8
NB
811the array is later assembled as /dev/md2.
812
d013a55e 813Giving the literal word "dev" for
7e23fc43 814.B \-\-super\-minor
d013a55e
NB
815will cause
816.I mdadm
817to use the minor number of the md device that is being assembled.
818e.g. when assembling
819.BR /dev/md0 ,
51ac42e3 820.B \-\-super\-minor=dev
d013a55e
NB
821will look for super blocks with a minor number of 0.
822
e0fe762a
N
823.B \-\-super\-minor
824is only relevant for v0.90 metadata, and should not normally be used.
825Using
826.B \-\-uuid
827is much safer.
828
947fd4dd 829.TP
7e23fc43 830.BR \-N ", " \-\-name=
947fd4dd 831Specify the name of the array to assemble. This must be the name
624920bb 832that was specified when creating the array. It must either match
93e790af 833the name stored in the superblock exactly, or it must match
41a3b72a 834with the current
624920bb 835.I homehost
93e790af 836prefixed to the start of the given name.
947fd4dd 837
cd29a5c8 838.TP
7e23fc43 839.BR \-f ", " \-\-force
e0fe762a
N
840Assemble the array even if the metadata on some devices appears to be
841out-of-date. If
842.I mdadm
843cannot find enough working devices to start the array, but can find
844some devices that are recorded as having failed, then it will mark
845those devices as working so that the array can be started.
846An array which requires
847.B \-\-force
848to be started may contain data corruption. Use it carefully.
52826846 849
cd29a5c8 850.TP
7e23fc43 851.BR \-R ", " \-\-run
b8a8ccf9
NB
852Attempt to start the array even if fewer drives were given than were
853present last time the array was active. Normally if not all the
854expected drives are found and
7e23fc43 855.B \-\-scan
cd29a5c8
NB
856is not used, then the array will be assembled but not started.
857With
7e23fc43 858.B \-\-run
cd29a5c8 859an attempt will be made to start it anyway.
52826846 860
b8a8ccf9 861.TP
7e23fc43 862.B \-\-no\-degraded
b8a8ccf9 863This is the reverse of
7e23fc43 864.B \-\-run
93e790af 865in that it inhibits the startup of array unless all expected drives
b8a8ccf9 866are present. This is only needed with
93e790af
SW
867.B \-\-scan,
868and can be used if the physical connections to devices are
b8a8ccf9
NB
869not as reliable as you would like.
870
dd0781e5 871.TP
7e23fc43 872.BR \-a ", " "\-\-auto{=no,yes,md,mdp,part}"
dd0781e5
NB
873See this option under Create and Build options.
874
e793c2e5 875.TP
7e23fc43 876.BR \-b ", " \-\-bitmap=
2ae555c3
NB
877Specify the bitmap file that was given when the array was created. If
878an array has an
879.B internal
880bitmap, there is no need to specify this when assembling the array.
881
882.TP
7e23fc43 883.BR \-\-backup\-file=
2ae555c3 884If
7e23fc43 885.B \-\-backup\-file
2ae555c3
NB
886was used to grow the number of raid-devices in a RAID5, and the system
887crashed during the critical section, then the same
7e23fc43 888.B \-\-backup\-file
53e8b987 889must be presented to
7e23fc43 890.B \-\-assemble
53e8b987 891to allow possibly corrupted data to be restored.
e793c2e5 892
5787fa49 893.TP
7e23fc43 894.BR \-U ", " \-\-update=
5787fa49 895Update the superblock on each device while assembling the array. The
feb716e9
NB
896argument given to this flag can be one of
897.BR sparc2.2 ,
898.BR summaries ,
7d99579f 899.BR uuid ,
c4f12c13 900.BR name ,
0237e0ca 901.BR homehost ,
e5329c37 902.BR resync ,
586ed405 903.BR byteorder ,
bee8ec56 904.BR devicesize ,
5787fa49 905or
7e23fc43 906.BR super\-minor .
5787fa49
NB
907
908The
909.B sparc2.2
7d99579f 910option will adjust the superblock of an array what was created on a Sparc
5787fa49
NB
911machine running a patched 2.2 Linux kernel. This kernel got the
912alignment of part of the superblock wrong. You can use the
7e23fc43 913.B "\-\-examine \-\-sparc2.2"
5787fa49
NB
914option to
915.I mdadm
916to see what effect this would have.
917
918The
7e23fc43 919.B super\-minor
5787fa49 920option will update the
2ae555c3 921.B "preferred minor"
5787fa49 922field on each superblock to match the minor number of the array being
45c073c9
NB
923assembled.
924This can be useful if
7e23fc43 925.B \-\-examine
45c073c9 926reports a different "Preferred Minor" to
7e23fc43 927.BR \-\-detail .
45c073c9 928In some cases this update will be performed automatically
e0fe762a 929by the kernel driver. In particular the update happens automatically
45c073c9
NB
930at the first write to an array with redundancy (RAID level 1 or
931greater) on a 2.6 (or later) kernel.
5787fa49 932
7d99579f
NB
933The
934.B uuid
935option will change the uuid of the array. If a UUID is given with the
7e23fc43 936.B \-\-uuid
53e8b987 937option that UUID will be used as a new UUID and will
7d99579f
NB
938.B NOT
939be used to help identify the devices in the array.
53e8b987 940If no
7e23fc43 941.B \-\-uuid
53e8b987 942is given, a random UUID is chosen.
7d99579f 943
c4f12c13
NB
944The
945.B name
946option will change the
947.I name
948of the array as stored in the superblock. This is only supported for
949version-1 superblocks.
950
0237e0ca
NB
951The
952.B homehost
953option will change the
954.I homehost
955as recorded in the superblock. For version-0 superblocks, this is the
956same as updating the UUID.
957For version-1 superblocks, this involves updating the name.
958
e5329c37
NB
959The
960.B resync
961option will cause the array to be marked
962.I dirty
e0fe762a
N
963meaning that any redundancy in the array (e.g. parity for RAID5,
964copies for RAID1) may be incorrect. This will cause the RAID system
e5329c37
NB
965to perform a "resync" pass to make sure that all redundant information
966is correct.
967
586ed405
NB
968The
969.B byteorder
970option allows arrays to be moved between machines with different
971byte-order.
2ae555c3 972When assembling such an array for the first time after a move, giving
7e23fc43 973.B "\-\-update=byteorder"
586ed405
NB
974will cause
975.I mdadm
976to expect superblocks to have their byteorder reversed, and will
977correct that order before assembling the array. This is only valid
2ae555c3 978with original (Version 0.90) superblocks.
586ed405 979
feb716e9
NB
980The
981.B summaries
e0fe762a 982option will correct the summaries in the superblock. That is the
feb716e9 983counts of total, working, active, failed, and spare devices.
5787fa49 984
bee8ec56
NB
985The
986.B devicesize
987will rarely be of use. It applies to version 1.1 and 1.2 metadata
988only (where the metadata is at the start of the device) and is only
989useful when the component device has changed size (typically become
990larger). The version 1 metadata records the amount of the device that
991can be used to store data, so if a device in a version 1.1 or 1.2
992array becomes larger, the metadata will still be visible, but the
993extra space will not. In this case it might be useful to assemble the
994array with
7e23fc43 995.BR \-\-update=devicesize .
bee8ec56
NB
996This will cause
997.I mdadm
998to determine the maximum usable amount of space on each device and
999update the relevant field in the metadata.
1000
d1302dd8 1001.ig
41a3b72a 1002.TP
7e23fc43 1003.B \-\-auto\-update\-homehost
93e790af 1004This flag is only meaningful with auto-assembly (see discussion below).
41a3b72a
NB
1005In that situation, if no suitable arrays are found for this homehost,
1006.I mdadm
93e790af 1007will rescan for any arrays at all and will assemble them and update the
41a3b72a 1008homehost to match the current host.
d1302dd8 1009..
41a3b72a 1010
e0d19036 1011.SH For Manage mode:
52826846 1012
3d5279b0
N
1013.TP
1014.BR \-t ", " \-\-test
1015Unless a more serious error occurred,
1016.I mdadm
1017will exit with a status of 2 if no changes were made to the array and
10180 if at least one change was made.
1019This can be useful when an indirect specifier such as
1020.BR missing ,
1021.B detached
1022or
1023.B faulty
1024is used in requesting an operation on the array.
1025.B \-\-test
1026will report failure if these specifiers didn't find any match.
1027
cd29a5c8 1028.TP
7e23fc43 1029.BR \-a ", " \-\-add
3d5279b0
N
1030hot-add listed devices.
1031If a device appears to have recently been part of the array
1032(possibly it failed or was removed) the device is re-added as describe
1033in the next point.
1034If that fails or the device was never part of the array, the device is
1035added as a hot-spare.
1036If the array is degraded, it will immediately start to rebuild data
1037onto that spare.
1038
1039Note that this and the following options are only meaningful on array
1040with redundancy. They don't apply to RAID0 or Linear.
52826846 1041
fe80f49b 1042.TP
7e23fc43 1043.BR \-\-re\-add
3d5279b0
N
1044re\-add a device that was previous removed from an array.
1045If the metadata on the device reports that it is a member of the
1046array, and the slot that it used is still vacant, then the device will
1047be added back to the array in the same position. This will normally
1048cause the data for that device to be recovered. However based on the
1049event count on the device, the recovery may only require sections that
1050are flagged a write-intent bitmap to be recovered or may not require
1051any recovery at all.
1052
1053When used on an array that has no metadata (i.e. it was built with
1054.BR \-\-build)
1055it will be assumed that bitmap-based recovery is enough to make the
1056device fully consistent with the array.
fe80f49b 1057
a4e13010
N
1058If the device name given is
1059.B missing
1060then mdadm will try to find any device that looks like it should be
1061part of the array but isn't and will try to re\-add all such devices.
1062
cd29a5c8 1063.TP
7e23fc43 1064.BR \-r ", " \-\-remove
2d465520 1065remove listed devices. They must not be active. i.e. they should
b80da661
NB
1066be failed or spare devices. As well as the name of a device file
1067(e.g.
1068.BR /dev/sda1 )
1069the words
1070.B failed
1071and
1072.B detached
1073can be given to
1074.BR \-\-remove .
1075The first causes all failed device to be removed. The second causes
93e790af 1076any device which is no longer connected to the system (i.e an 'open'
b80da661
NB
1077returns
1078.BR ENXIO )
1079to be removed. This will only succeed for devices that are spares or
1080have already been marked as failed.
52826846 1081
cd29a5c8 1082.TP
7e23fc43 1083.BR \-f ", " \-\-fail
cd29a5c8 1084mark listed devices as faulty.
b80da661
NB
1085As well as the name of a device file, the word
1086.B detached
1087can be given. This will cause any device that has been detached from
1088the system to be marked as failed. It can then be removed.
52826846 1089
cd29a5c8 1090.TP
7e23fc43 1091.BR \-\-set\-faulty
53e8b987 1092same as
7e23fc43 1093.BR \-\-fail .
52826846 1094
b3d31955
N
1095.TP
1096.BR \-\-write\-mostly
a4e13010 1097Subsequent devices that are added or re\-added will have the 'write-mostly'
e0fe762a 1098flag set. This is only valid for RAID1 and means that the 'md' driver
b3d31955
N
1099will avoid reading from these devices if possible.
1100.TP
1101.BR \-\-readwrite
a4e13010 1102Subsequent devices that are added or re\-added will have the 'write-mostly'
b3d31955
N
1103flag cleared.
1104
2ae555c3 1105.P
e0fe762a 1106Each of these options requires that the first device listed is the array
93e790af 1107to be acted upon, and the remainder are component devices to be added,
e0fe762a 1108removed, marked as faulty, etc. Several different operations can be
2ae555c3
NB
1109specified for different devices, e.g.
1110.in +5
7e23fc43 1111mdadm /dev/md0 \-\-add /dev/sda1 \-\-fail /dev/sdb1 \-\-remove /dev/sdb1
2ae555c3
NB
1112.in -5
1113Each operation applies to all devices listed until the next
93e790af 1114operation.
2ae555c3
NB
1115
1116If an array is using a write-intent bitmap, then devices which have
a4e13010 1117been removed can be re\-added in a way that avoids a full
93e790af 1118reconstruction but instead just updates the blocks that have changed
2ae555c3
NB
1119since the device was removed. For arrays with persistent metadata
1120(superblocks) this is done automatically. For arrays created with
7e23fc43 1121.B \-\-build
2ae555c3 1122mdadm needs to be told that this device we removed recently with
7e23fc43 1123.BR \-\-re\-add .
2ae555c3
NB
1124
1125Devices can only be removed from an array if they are not in active
93e790af
SW
1126use, i.e. that must be spares or failed devices. To remove an active
1127device, it must first be marked as
1128.B faulty.
2ae555c3
NB
1129
1130.SH For Misc mode:
1131
1132.TP
7e23fc43 1133.BR \-Q ", " \-\-query
2ae555c3
NB
1134Examine a device to see
1135(1) if it is an md device and (2) if it is a component of an md
1136array.
1137Information about what is discovered is presented.
1138
1139.TP
7e23fc43 1140.BR \-D ", " \-\-detail
e0fe762a 1141Print details of one or more md devices.
5787fa49 1142
4cce4069
DW
1143.TP
1144.BR \-\-detail\-platform
e0fe762a 1145Print details of the platform's RAID capabilities (firmware / hardware
4cce4069
DW
1146topology) for a given metadata format.
1147
54bad364
KS
1148.TP
1149.BR \-Y ", " \-\-export
1150When used with
0d726f17
KS
1151.B \-\-detail
1152or
1153.BR \-\-examine ,
54bad364
KS
1154output will be formatted as
1155.B key=value
1156pairs for easy import into the environment.
1157
2ae555c3 1158.TP
7e23fc43 1159.BR \-E ", " \-\-examine
e0fe762a
N
1160Print contents of the metadata stored on the named device(s).
1161Note the contrast between
1162.B \-\-examine
1163and
1164.BR \-\-detail .
1165.B \-\-examine
1166applies to devices which are components of an array, while
1167.B \-\-detail
1168applies to a whole array which is currently active.
5787fa49 1169.TP
7e23fc43 1170.B \-\-sparc2.2
e0fe762a
N
1171If an array was created on a SPARC machine with a 2.2 Linux kernel
1172patched with RAID support, the superblock will have been created
1173incorrectly, or at least incompatibly with 2.4 and later kernels.
1174Using the
7e23fc43 1175.B \-\-sparc2.2
5787fa49 1176flag with
7e23fc43 1177.B \-\-examine
5787fa49
NB
1178will fix the superblock before displaying it. If this appears to do
1179the right thing, then the array can be successfully assembled using
7e23fc43 1180.BR "\-\-assemble \-\-update=sparc2.2" .
5787fa49 1181
2ae555c3 1182.TP
7e23fc43 1183.BR \-X ", " \-\-examine\-bitmap
2ae555c3 1184Report information about a bitmap file.
01d9299c 1185The argument is either an external bitmap file or an array component
e0fe762a
N
1186in case of an internal bitmap. Note that running this on an array
1187device (e.g.
1188.BR /dev/md0 )
1189does not report the bitmap for that array.
e0d19036 1190
cd29a5c8 1191.TP
7e23fc43 1192.BR \-R ", " \-\-run
e0fe762a
N
1193start a partially assembled array. If
1194.B \-\-assemble
1195did not find enough devices to fully start the array, it might leaving
1196it partially assembled. If you wish, you can then use
1197.B \-\-run
1198to start the array in degraded mode.
52826846 1199
cd29a5c8 1200.TP
7e23fc43 1201.BR \-S ", " \-\-stop
cd29a5c8 1202deactivate array, releasing all resources.
52826846 1203
cd29a5c8 1204.TP
7e23fc43 1205.BR \-o ", " \-\-readonly
cd29a5c8 1206mark array as readonly.
52826846 1207
cd29a5c8 1208.TP
7e23fc43 1209.BR \-w ", " \-\-readwrite
cd29a5c8 1210mark array as readwrite.
52826846 1211
e0d19036 1212.TP
7e23fc43 1213.B \-\-zero\-superblock
e0d19036 1214If the device contains a valid md superblock, the block is
35cc5be4 1215overwritten with zeros. With
7e23fc43 1216.B \-\-force
35cc5be4 1217the block where the superblock would be is overwritten even if it
e0d19036 1218doesn't appear to be valid.
52826846 1219
33414a01
DW
1220.TP
1221.B \-\-kill\-subarray=
1222If the device is a container and the argument to \-\-kill\-subarray
1223specifies an inactive subarray in the container, then the subarray is
1224deleted. Deleting all subarrays will leave an 'empty-container' or
1225spare superblock on the drives. See \-\-zero\-superblock for completely
1226removing a superblock. Note that some formats depend on the subarray
1227index for generating a UUID, this command will fail if it would change
1228the UUID of an active subarray.
1229
aa534678
DW
1230.TP
1231.B \-\-update\-subarray=
1232If the device is a container and the argument to \-\-update\-subarray
1233specifies a subarray in the container, then attempt to update the given
1234superblock field in the subarray. See below in
1235.B MISC MODE
1236for details.
1237
feb716e9 1238.TP
7e23fc43 1239.BR \-t ", " \-\-test
feb716e9 1240When used with
7e23fc43 1241.BR \-\-detail ,
feb716e9
NB
1242the exit status of
1243.I mdadm
e0fe762a
N
1244is set to reflect the status of the device. See below in
1245.B MISC MODE
1246for details.
feb716e9 1247
b90c0e9a 1248.TP
7e23fc43 1249.BR \-W ", " \-\-wait
b90c0e9a
NB
1250For each md device given, wait for any resync, recovery, or reshape
1251activity to finish before returning.
1252.I mdadm
1253will return with success if it actually waited for every device
1254listed, otherwise it will return failure.
1255
1770662b
DW
1256.TP
1257.BR \-\-wait\-clean
fabbfd48
DW
1258For each md device given, or each device in /proc/mdstat if
1259.B \-\-scan
1260is given, arrange for the array to be marked clean as soon as possible.
7146ec6a
DW
1261.I mdadm
1262will return with success if the array uses external metadata and we
1263successfully waited. For native arrays this returns immediately as the
6a0ee6a0
DW
1264kernel handles dirty-clean transitions at shutdown. No action is taken
1265if safe-mode handling is disabled.
1770662b 1266
8382f19b
NB
1267.SH For Incremental Assembly mode:
1268.TP
7e23fc43 1269.BR \-\-rebuild\-map ", " \-r
8382f19b
NB
1270Rebuild the map file
1271.RB ( /var/run/mdadm/map )
1272that
1273.I mdadm
1274uses to help track which arrays are currently being assembled.
1275
1276.TP
7e23fc43 1277.BR \-\-run ", " \-R
8382f19b
NB
1278Run any array assembled as soon as a minimal number of devices are
1279available, rather than waiting until all expected devices are present.
1280
1281.TP
7e23fc43 1282.BR \-\-scan ", " \-s
8382f19b 1283Only meaningful with
7e23fc43 1284.B \-R
8382f19b
NB
1285this will scan the
1286.B map
1287file for arrays that are being incrementally assembled and will try to
1288start any that are not already started. If any such array is listed
1289in
1290.B mdadm.conf
1291as requiring an external bitmap, that bitmap will be attached first.
1292
29ba4804
N
1293.TP
1294.BR \-\-fail ", " \-f
1295This allows the hot-plug system to remove devices that have fully disappeared
1296from the kernel. It will first fail and then remove the device from any
1297array it belongs to.
1298The device name given should be a kernel device name such as "sda",
1299not a name in
1300.IR /dev .
1301
e0d19036
NB
1302.SH For Monitor mode:
1303.TP
7e23fc43 1304.BR \-m ", " \-\-mail
e0d19036
NB
1305Give a mail address to send alerts to.
1306
1307.TP
7e23fc43 1308.BR \-p ", " \-\-program ", " \-\-alert
e0d19036
NB
1309Give a program to be run whenever an event is detected.
1310
773135f5 1311.TP
7e23fc43 1312.BR \-y ", " \-\-syslog
773135f5
NB
1313Cause all events to be reported through 'syslog'. The messages have
1314facility of 'daemon' and varying priorities.
1315
e0d19036 1316.TP
7e23fc43 1317.BR \-d ", " \-\-delay
e0d19036 1318Give a delay in seconds.
51ac42e3 1319.I mdadm
e0d19036 1320polls the md arrays and then waits this many seconds before polling
e0fe762a
N
1321again. The default is 60 seconds. Since 2.6.16, there is no need to
1322reduce this as the kernel alerts
1323.I mdadm
1324immediately when there is any change.
e0d19036 1325
9a36a9b7
ZB
1326.TP
1327.BR \-r ", " \-\-increment
1328Give a percentage increment.
1329.I mdadm
1330will generate RebuildNN events with the given percentage increment.
1331
d013a55e 1332.TP
7e23fc43 1333.BR \-f ", " \-\-daemonise
d013a55e 1334Tell
51ac42e3 1335.I mdadm
d013a55e 1336to run as a background daemon if it decides to monitor anything. This
e0fe762a 1337causes it to fork and run in the child, and to disconnect from the
d013a55e
NB
1338terminal. The process id of the child is written to stdout.
1339This is useful with
7e23fc43 1340.B \-\-scan
d013a55e
NB
1341which will only continue monitoring if a mail address or alert program
1342is found in the config file.
1343
b5e64645 1344.TP
7e23fc43 1345.BR \-i ", " \-\-pid\-file
b5e64645 1346When
51ac42e3 1347.I mdadm
b5e64645
NB
1348is running in daemon mode, write the pid of the daemon process to
1349the specified file, instead of printing it on standard output.
1350
aa88f531 1351.TP
7e23fc43 1352.BR \-1 ", " \-\-oneshot
aa88f531
NB
1353Check arrays only once. This will generate
1354.B NewArray
1355events and more significantly
1356.B DegradedArray
a9d69660
NB
1357and
1358.B SparesMissing
aa88f531
NB
1359events. Running
1360.in +5
7e23fc43 1361.B " mdadm \-\-monitor \-\-scan \-1"
aa88f531
NB
1362.in -5
1363from a cron script will ensure regular notification of any degraded arrays.
1364
98c6faba 1365.TP
7e23fc43 1366.BR \-t ", " \-\-test
98c6faba
NB
1367Generate a
1368.B TestMessage
1369alert for every array found at startup. This alert gets mailed and
1370passed to the alert program. This can be used for testing that alert
a9d69660 1371message do get through successfully.
98c6faba 1372
e0d19036 1373.SH ASSEMBLE MODE
52826846 1374
cd29a5c8
NB
1375.HP 12
1376Usage:
7e23fc43 1377.B mdadm \-\-assemble
5787fa49
NB
1378.I md-device options-and-component-devices...
1379.HP 12
1380Usage:
7e23fc43 1381.B mdadm \-\-assemble \-\-scan
e0fe762a 1382.I md-devices-and-options...
cd29a5c8
NB
1383.HP 12
1384Usage:
7e23fc43 1385.B mdadm \-\-assemble \-\-scan
e0fe762a 1386.I options...
52826846 1387
cd29a5c8 1388.PP
e0fe762a 1389This usage assembles one or more RAID arrays from pre-existing components.
9a9dab36 1390For each array, mdadm needs to know the md device, the identity of the
e0fe762a 1391array, and a number of component-devices. These can be found in a number of ways.
52826846 1392
5787fa49 1393In the first usage example (without the
7e23fc43 1394.BR \-\-scan )
5787fa49
NB
1395the first device given is the md device.
1396In the second usage example, all devices listed are treated as md
1397devices and assembly is attempted.
1398In the third (where no devices are listed) all md devices that are
e0fe762a
N
1399listed in the configuration file are assembled. If not arrays are
1400described by the configuration file, then any arrays that
1401can be found on unused devices will be assembled.
52826846 1402
d013a55e 1403If precisely one device is listed, but
7e23fc43 1404.B \-\-scan
dd0781e5 1405is not given, then
d013a55e
NB
1406.I mdadm
1407acts as though
7e23fc43 1408.B \-\-scan
93e790af 1409was given and identity information is extracted from the configuration file.
d013a55e 1410
2ae555c3 1411The identity can be given with the
7e23fc43 1412.B \-\-uuid
e0fe762a
N
1413option, the
1414.B \-\-name
1415option, or the
7e23fc43 1416.B \-\-super\-minor
93e790af
SW
1417option, will be taken from the md-device record in the config file, or
1418will be taken from the super block of the first component-device
1419listed on the command line.
52826846 1420
2ae555c3 1421Devices can be given on the
7e23fc43 1422.B \-\-assemble
e0fe762a 1423command line or in the config file. Only devices which have an md
5787fa49
NB
1424superblock which contains the right identity will be considered for
1425any array.
52826846 1426
2ae555c3 1427The config file is only used if explicitly named with
7e23fc43 1428.B \-\-config
d013a55e 1429or requested with (a possibly implicit)
7e23fc43 1430.BR \-\-scan .
52826846 1431In the later case,
9a9dab36 1432.B /etc/mdadm.conf
8fd8d9c4
N
1433or
1434.B /etc/mdadm/mdadm.conf
52826846
NB
1435is used.
1436
2ae555c3 1437If
7e23fc43 1438.B \-\-scan
cd29a5c8
NB
1439is not given, then the config file will only be used to find the
1440identity of md arrays.
52826846 1441
2d465520 1442Normally the array will be started after it is assembled. However if
7e23fc43 1443.B \-\-scan
e0fe762a
N
1444is not given and not all expected drives were listed, then the array
1445is not started (to guard against usage errors). To insist that the
1446array be started in this case (as may work for RAID1, 4, 5, 6, or 10),
1447give the
7e23fc43 1448.B \-\-run
cd29a5c8 1449flag.
52826846 1450
e0fe762a
N
1451If
1452.I udev
1453is active,
1454.I mdadm
1455does not create any entries in
dd0781e5 1456.B /dev
e0fe762a
N
1457but leaves that to
1458.IR udev .
1459It does record information in
1460.B /var/run/mdadm/map
1461which will allow
1462.I udev
1463to choose the correct name.
dd0781e5 1464
e0fe762a
N
1465If
1466.I mdadm
1467detects that udev is not configured, it will create the devices in
1468.B /dev
1469itself.
dd0781e5 1470
e0fe762a
N
1471In Linux kernels prior to version 2.6.28 there were two distinctly
1472different types of md devices that could be created: one that could be
1473partitioned using standard partitioning tools and one that could not.
1474Since 2.6.28 that distinction is no longer relevant as both type of
1475devices can be partitioned.
1476.I mdadm
1477will normally create the type that originally could not be partitioned
1478as it has a well defined major number (9).
dd0781e5 1479
e0fe762a
N
1480Prior to 2.6.28, it is important that mdadm chooses the correct type
1481of array device to use. This can be controlled with the
1482.B \-\-auto
1483option. In particular, a value of "mdp" or "part" or "p" tells mdadm
1484to use a partitionable device rather than the default.
dd0781e5 1485
e0fe762a
N
1486In the no-udev case, the value given to
1487.B \-\-auto
1488can be suffixed by a number. This tells
1489.I mdadm
1490to create that number of partition devices rather than the default of 4.
dd0781e5 1491
e0fe762a 1492The value given to
7e23fc43 1493.B \-\-auto
e0fe762a
N
1494can also be given in the configuration file as a word starting
1495.B auto=
1496on the ARRAY line for the relevant array.
52826846 1497
41a3b72a
NB
1498.SS Auto Assembly
1499When
7e23fc43 1500.B \-\-assemble
41a3b72a 1501is used with
7e23fc43 1502.B \-\-scan
41a3b72a
NB
1503and no devices are listed,
1504.I mdadm
1505will first attempt to assemble all the arrays listed in the config
1506file.
1507
e0fe762a
N
1508In no array at listed in the config (other than those marked
1509.BR <ignore> )
1510it will look through the available devices for possible arrays and
1511will try to assemble anything that it finds. Arrays which are tagged
1512as belonging to the given homehost will be assembled and started
1513normally. Arrays which do not obviously belong to this host are given
1514names that are expected not to conflict with anything local, and are
1515started "read-auto" so that nothing is written to any device until the
1516array is written to. i.e. automatic resync etc is delayed.
41a3b72a
NB
1517
1518If
1519.I mdadm
1520finds a consistent set of devices that look like they should comprise
1521an array, and if the superblock is tagged as belonging to the given
1522home host, it will automatically choose a device name and try to
1523assemble the array. If the array uses version-0.90 metadata, then the
1524.B minor
1525number as recorded in the superblock is used to create a name in
1526.B /dev/md/
1527so for example
1528.BR /dev/md/3 .
1529If the array uses version-1 metadata, then the
1530.B name
1531from the superblock is used to similarly create a name in
e0fe762a 1532.B /dev/md/
93e790af 1533(the name will have any 'host' prefix stripped first).
41a3b72a 1534
c64ba03a
N
1535This behaviour can be modified by the
1536.I AUTO
1537line in the
1538.I mdadm.conf
1539configuration file. This line can indicate that specific metadata
1540type should, or should not, be automatically assembled. If an array
1541is found which is not listed in
1542.I mdadm.conf
1543and has a metadata format that is denied by the
1544.I AUTO
1545line, then it will not be assembled.
1546The
1547.I AUTO
1548line can also request that all arrays identified as being for this
1549homehost should be assembled regardless of their metadata type.
1550See
1551.IR mdadm.conf (5)
1552for further details.
1553
d1302dd8 1554.ig
41a3b72a
NB
1555If
1556.I mdadm
1557cannot find any array for the given host at all, and if
7e23fc43 1558.B \-\-auto\-update\-homehost
41a3b72a
NB
1559is given, then
1560.I mdadm
1561will search again for any array (not just an array created for this
1562host) and will assemble each assuming
7e23fc43 1563.BR \-\-update=homehost .
41a3b72a
NB
1564This will change the host tag in the superblock so that on the next run,
1565these arrays will be found without the second pass. The intention of
1566this feature is to support transitioning a set of md arrays to using
1567homehost tagging.
1568
1569The reason for requiring arrays to be tagged with the homehost for
1570auto assembly is to guard against problems that can arise when moving
1571devices from one host to another.
d1302dd8 1572..
41a3b72a 1573
cd29a5c8 1574.SH BUILD MODE
52826846 1575
cd29a5c8
NB
1576.HP 12
1577Usage:
7e23fc43 1578.B mdadm \-\-build
93e790af 1579.I md-device
7e23fc43
PS
1580.BI \-\-chunk= X
1581.BI \-\-level= Y
1582.BI \-\-raid\-devices= Z
cd29a5c8
NB
1583.I devices
1584
1585.PP
2ae555c3 1586This usage is similar to
7e23fc43 1587.BR \-\-create .
e0fe762a 1588The difference is that it creates an array without a superblock. With
cd29a5c8 1589these arrays there is no difference between initially creating the array and
52826846
NB
1590subsequently assembling the array, except that hopefully there is useful
1591data there in the second case.
1592
e0fe762a
N
1593The level may raid0, linear, raid1, raid10, multipath, or faulty, or
1594one of their synonyms. All devices must be listed and the array will
1595be started once complete. It will often be appropriate to use
1596.B \-\-assume\-clean
1597with levels raid1 or raid10.
cd29a5c8
NB
1598
1599.SH CREATE MODE
1600
1601.HP 12
1602Usage:
7e23fc43 1603.B mdadm \-\-create
93e790af 1604.I md-device
7e23fc43
PS
1605.BI \-\-chunk= X
1606.BI \-\-level= Y
cd29a5c8 1607.br
7e23fc43 1608.BI \-\-raid\-devices= Z
e0fe762a 1609.I devices
cd29a5c8
NB
1610
1611.PP
1612This usage will initialise a new md array, associate some devices with
1613it, and activate the array.
1614
e0fe762a
N
1615The named device will normally not exist when
1616.I "mdadm \-\-create"
1617is run, but will be created by
1618.I udev
1619once the array becomes active.
dd0781e5 1620
e0fe762a
N
1621As devices are added, they are checked to see if they contain RAID
1622superblocks or filesystems. They are also checked to see if the variance in
cd29a5c8
NB
1623device size exceeds 1%.
1624
1625If any discrepancy is found, the array will not automatically be run, though
2ae555c3 1626the presence of a
7e23fc43 1627.B \-\-run
cd29a5c8
NB
1628can override this caution.
1629
2d465520 1630To create a "degraded" array in which some devices are missing, simply
d013a55e 1631give the word "\fBmissing\fP"
2d465520 1632in place of a device name. This will cause
51ac42e3 1633.I mdadm
2d465520
NB
1634to leave the corresponding slot in the array empty.
1635For a RAID4 or RAID5 array at most one slot can be
98c6faba 1636"\fBmissing\fP"; for a RAID6 array at most two slots.
2d465520
NB
1637For a RAID1 array, only one real device needs to be given. All of the
1638others can be
d013a55e 1639"\fBmissing\fP".
2d465520 1640
feb716e9 1641When creating a RAID5 array,
51ac42e3 1642.I mdadm
feb716e9 1643will automatically create a degraded array with an extra spare drive.
e0fe762a
N
1644This is because building the spare into a degraded array is in general
1645faster than resyncing the parity on a non-degraded, but not clean,
1646array. This feature can be overridden with the
7e23fc43 1647.B \-\-force
feb716e9
NB
1648option.
1649
0ee4da98 1650When creating an array with version-1 metadata a name for the array is
41a3b72a
NB
1651required.
1652If this is not given with the
7e23fc43 1653.B \-\-name
41a3b72a
NB
1654option,
1655.I mdadm
0ee4da98 1656will choose a name based on the last component of the name of the
41a3b72a
NB
1657device being created. So if
1658.B /dev/md3
1659is being created, then the name
1660.B 3
1661will be chosen.
1662If
1663.B /dev/md/home
1664is being created, then the name
1665.B home
1666will be used.
1667
e0fe762a
N
1668When creating a partition based array, using
1669.I mdadm
1670with version-1.x metadata, the partition type should be set to
e0f31f50 1671.B 0xDA
e0fe762a 1672(non fs-data). This type selection allows for greater precision since
e0f31f50
PC
1673using any other [RAID auto-detect (0xFD) or a GNU/Linux partition (0x83)],
1674might create problems in the event of array recovery through a live cdrom.
1675
3d3dd91e
NB
1676A new array will normally get a randomly assigned 128bit UUID which is
1677very likely to be unique. If you have a specific need, you can choose
1678a UUID for the array by giving the
7e23fc43 1679.B \-\-uuid=
3d3dd91e
NB
1680option. Be warned that creating two arrays with the same UUID is a
1681recipe for disaster. Also, using
7e23fc43 1682.B \-\-uuid=
3d3dd91e 1683when creating a v0.90 array will silently override any
7e23fc43 1684.B \-\-homehost=
3d3dd91e 1685setting.
e43d0cda
NB
1686.\"If the
1687.\".B \-\-size
1688.\"option is given, it is not necessary to list any component-devices in this command.
1689.\"They can be added later, before a
1690.\".B \-\-run.
1691.\"If no
1692.\".B \-\-size
1693.\"is given, the apparent size of the smallest drive given is used.
cd29a5c8 1694
8fd8d9c4
N
1695When creating an array within a
1696.B CONTAINER
1697.I mdadm
1698can be given either the list of devices to use, or simply the name of
1699the container. The former case gives control over which devices in
1700the container will be used for the array. The latter case allows
1701.I mdadm
1702to automatically choose which devices to use based on how much spare
1703space is available.
1704
53e8b987 1705The General Management options that are valid with
7e23fc43 1706.B \-\-create
53e8b987 1707are:
cd29a5c8 1708.TP
7e23fc43 1709.B \-\-run
dd0781e5 1710insist on running the array even if some devices look like they might
cd29a5c8
NB
1711be in use.
1712
1713.TP
7e23fc43 1714.B \-\-readonly
b3f1c093 1715start the array readonly \(em not supported yet.
52826846 1716
e0d19036 1717.SH MANAGE MODE
cd29a5c8
NB
1718.HP 12
1719Usage:
e0d19036
NB
1720.B mdadm
1721.I device
1722.I options... devices...
cd29a5c8
NB
1723.PP
1724
e0d19036
NB
1725This usage will allow individual devices in an array to be failed,
1726removed or added. It is possible to perform multiple operations with
e0fe762a 1727on command. For example:
e0d19036 1728.br
7e23fc43 1729.B " mdadm /dev/md0 \-f /dev/hda1 \-r /dev/hda1 \-a /dev/hda1"
e0d19036
NB
1730.br
1731will firstly mark
1732.B /dev/hda1
1733as faulty in
1734.B /dev/md0
1735and will then remove it from the array and finally add it back
2d465520 1736in as a spare. However only one md array can be affected by a single
2ae555c3 1737command.
e0d19036 1738
e0fe762a
N
1739When a device is added to an active array, mdadm checks to see if it
1740has metadata on it which suggests that it was recently a member of the
a4e13010 1741array. If it does, it tries to "re\-add" the device. If there have
e0fe762a
N
1742been no changes since the device was removed, or if the array has a
1743write-intent bitmap which has recorded whatever changes there were,
1744then the device will immediately become a full member of the array and
1745those differences recorded in the bitmap will be resolved.
1746
e0d19036
NB
1747.SH MISC MODE
1748.HP 12
1749Usage:
9a9dab36 1750.B mdadm
e0d19036 1751.I options ...
e0fe762a 1752.I devices ...
e0d19036 1753.PP
cd29a5c8 1754
b5e64645 1755MISC mode includes a number of distinct operations that
e0d19036
NB
1756operate on distinct devices. The operations are:
1757.TP
962a108f 1758.B \-\-query
e0d19036
NB
1759The device is examined to see if it is
1760(1) an active md array, or
1761(2) a component of an md array.
1762The information discovered is reported.
1763
1764.TP
962a108f 1765.B \-\-detail
2d465520 1766The device should be an active md device.
e0fe762a 1767.B mdadm
2d465520 1768will display a detailed description of the array.
7e23fc43 1769.B \-\-brief
2d465520 1770or
7e23fc43 1771.B \-\-scan
2d465520 1772will cause the output to be less detailed and the format to be
e0d19036 1773suitable for inclusion in
9a9dab36 1774.BR /etc/mdadm.conf .
feb716e9
NB
1775The exit status of
1776.I mdadm
1777will normally be 0 unless
1778.I mdadm
93e790af 1779failed to get useful information about the device(s); however, if the
7e23fc43 1780.B \-\-test
feb716e9
NB
1781option is given, then the exit status will be:
1782.RS
1783.TP
17840
1785The array is functioning normally.
1786.TP
17871
1788The array has at least one failed device.
1789.TP
17902
a77be586 1791The array has multiple failed devices such that it is unusable.
feb716e9
NB
1792.TP
17934
1794There was an error while trying to get information about the device.
1795.RE
cd29a5c8 1796
4cce4069
DW
1797.TP
1798.B \-\-detail\-platform
e0fe762a 1799Print detail of the platform's RAID capabilities (firmware / hardware
4cce4069
DW
1800topology). If the metadata is specified with
1801.B \-e
1802or
1803.B \-\-metadata=
1804then the return status will be:
1805.RS
1806.TP
18070
1808metadata successfully enumerated its platform components on this system
1809.TP
18101
1811metadata is platform independent
1812.TP
18132
1814metadata failed to find its platform components on this system
1815.RE
1816
aa534678
DW
1817.TP
1818.B \-\-update\-subarray=
1819If the device is a container and the argument to \-\-update\-subarray
1820specifies a subarray in the container, then attempt to update the given
1821superblock field in the subarray. Similar to updating an array in
1822"assemble" mode, the field to update is selected by
1823.B \-U
1824or
1825.B \-\-update=
1826option. Currently only
1827.B name
1828is supported.
1829
1830The
1831.B name
1832option updates the subarray name in the metadata, it may not affect the
1833device node name or the device node symlink until the subarray is
1834re\-assembled. If updating
1835.B name
1836would change the UUID of an active subarray this operation is blocked,
1837and the command will end in an error.
1838
e0d19036 1839.TP
962a108f 1840.B \-\-examine
2d465520 1841The device should be a component of an md array.
51ac42e3 1842.I mdadm
2d465520 1843will read the md superblock of the device and display the contents.
e0d19036 1844If
7e23fc43 1845.B \-\-brief
93e790af 1846or
7e23fc43 1847.B \-\-scan
93e790af 1848is given, then multiple devices that are components of the one array
e0d19036
NB
1849are grouped together and reported in a single entry suitable
1850for inclusion in
1851.BR /etc/mdadm.conf .
1852
2d465520 1853Having
7e23fc43 1854.B \-\-scan
e0d19036
NB
1855without listing any devices will cause all devices listed in the
1856config file to be examined.
1857
1858.TP
962a108f 1859.B \-\-stop
98c6faba
NB
1860The devices should be active md arrays which will be deactivated, as
1861long as they are not currently in use.
e0d19036
NB
1862
1863.TP
962a108f 1864.B \-\-run
e0d19036
NB
1865This will fully activate a partially assembled md array.
1866
1867.TP
962a108f 1868.B \-\-readonly
e0d19036
NB
1869This will mark an active array as read-only, providing that it is
1870not currently being used.
1871
1872.TP
962a108f 1873.B \-\-readwrite
e0d19036
NB
1874This will change a
1875.B readonly
1876array back to being read/write.
1877
2d465520 1878.TP
962a108f 1879.B \-\-scan
2d465520 1880For all operations except
7e23fc43
PS
1881.BR \-\-examine ,
1882.B \-\-scan
2d465520
NB
1883will cause the operation to be applied to all arrays listed in
1884.BR /proc/mdstat .
1885For
7e23fc43
PS
1886.BR \-\-examine,
1887.B \-\-scan
2d465520
NB
1888causes all devices listed in the config file to be examined.
1889
a1331cc4
N
1890.TP
1891.BR \-b ", " \-\-brief
1892Be less verbose. This is used with
1893.B \-\-detail
1894and
1895.BR \-\-examine .
1896Using
1897.B \-\-brief
1898with
1899.B \-\-verbose
1900gives an intermediate level of verbosity.
1901
e0d19036
NB
1902.SH MONITOR MODE
1903
cd29a5c8
NB
1904.HP 12
1905Usage:
7e23fc43 1906.B mdadm \-\-monitor
e0d19036
NB
1907.I options... devices...
1908
cd29a5c8 1909.PP
e0d19036 1910This usage causes
51ac42e3 1911.I mdadm
e0d19036
NB
1912to periodically poll a number of md arrays and to report on any events
1913noticed.
51ac42e3 1914.I mdadm
e0d19036
NB
1915will never exit once it decides that there are arrays to be checked,
1916so it should normally be run in the background.
1917
2d465520 1918As well as reporting events,
51ac42e3 1919.I mdadm
2d465520
NB
1920may move a spare drive from one array to another if they are in the
1921same
1922.B spare-group
a9d69660 1923and if the destination array has a failed drive but no spares.
2d465520 1924
e0d19036 1925If any devices are listed on the command line,
51ac42e3 1926.I mdadm
e0fe762a 1927will only monitor those devices. Otherwise all arrays listed in the
e0d19036 1928configuration file will be monitored. Further, if
7e23fc43 1929.B \-\-scan
e0d19036
NB
1930is given, then any other md devices that appear in
1931.B /proc/mdstat
1932will also be monitored.
1933
1934The result of monitoring the arrays is the generation of events.
bd526cee 1935These events are passed to a separate program (if specified) and may
2d465520 1936be mailed to a given E-mail address.
e0d19036 1937
93e790af
SW
1938When passing events to a program, the program is run once for each event,
1939and is given 2 or 3 command-line arguments: the first is the
1940name of the event (see below), the second is the name of the
bd526cee 1941md device which is affected, and the third is the name of a related
93e790af 1942device if relevant (such as a component device that has failed).
cd29a5c8
NB
1943
1944If
7e23fc43 1945.B \-\-scan
e0d19036
NB
1946is given, then a program or an E-mail address must be specified on the
1947command line or in the config file. If neither are available, then
51ac42e3 1948.I mdadm
e0d19036
NB
1949will not monitor anything.
1950Without
93e790af 1951.B \-\-scan,
51ac42e3 1952.I mdadm
2d465520 1953will continue monitoring as long as something was found to monitor. If
e0d19036
NB
1954no program or email is given, then each event is reported to
1955.BR stdout .
cd29a5c8 1956
e0d19036
NB
1957The different events are:
1958
1959.RS 4
1960.TP
1961.B DeviceDisappeared
2d465520 1962An md array which previously was configured appears to no longer be
773135f5 1963configured. (syslog priority: Critical)
e0d19036 1964
b8f72a62
NB
1965If
1966.I mdadm
1967was told to monitor an array which is RAID0 or Linear, then it will
1968report
1969.B DeviceDisappeared
1970with the extra information
1971.BR Wrong-Level .
1972This is because RAID0 and Linear do not support the device-failed,
1973hot-spare and resync operations which are monitored.
1974
e0d19036
NB
1975.TP
1976.B RebuildStarted
773135f5 1977An md array started reconstruction. (syslog priority: Warning)
e0d19036
NB
1978
1979.TP
1980.BI Rebuild NN
1981Where
1982.I NN
9a36a9b7
ZB
1983is a two-digit number (ie. 05, 48). This indicates that rebuild
1984has passed that many percent of the total. The events are generated
1985with fixed increment since 0. Increment size may be specified with
1986a commandline option (default is 20). (syslog priority: Warning)
e0d19036 1987
98c6faba
NB
1988.TP
1989.B RebuildFinished
1990An md array that was rebuilding, isn't any more, either because it
773135f5 1991finished normally or was aborted. (syslog priority: Warning)
98c6faba 1992
e0d19036
NB
1993.TP
1994.B Fail
773135f5
NB
1995An active component device of an array has been marked as
1996faulty. (syslog priority: Critical)
e0d19036
NB
1997
1998.TP
1999.B FailSpare
2000A spare component device which was being rebuilt to replace a faulty
93e790af 2001device has failed. (syslog priority: Critical)
e0d19036
NB
2002
2003.TP
2004.B SpareActive
2005A spare component device which was being rebuilt to replace a faulty
98b24a2a 2006device has been successfully rebuilt and has been made active.
773135f5 2007(syslog priority: Info)
e0d19036
NB
2008
2009.TP
2010.B NewArray
2011A new md array has been detected in the
2012.B /proc/mdstat
e0fe762a 2013file. (syslog priority: Info)
e0d19036 2014
aa88f531
NB
2015.TP
2016.B DegradedArray
2017A newly noticed array appears to be degraded. This message is not
2018generated when
2019.I mdadm
2020notices a drive failure which causes degradation, but only when
2021.I mdadm
2022notices that an array is degraded when it first sees the array.
93e790af 2023(syslog priority: Critical)
aa88f531 2024
e0d19036
NB
2025.TP
2026.B MoveSpare
2027A spare drive has been moved from one array in a
2028.B spare-group
2029to another to allow a failed drive to be replaced.
773135f5 2030(syslog priority: Info)
e0d19036 2031
b8f72a62
NB
2032.TP
2033.B SparesMissing
2034If
2035.I mdadm
2036has been told, via the config file, that an array should have a certain
2037number of spare devices, and
2038.I mdadm
93e790af 2039detects that it has fewer than this number when it first sees the
b8f72a62
NB
2040array, it will report a
2041.B SparesMissing
2042message.
d1732eeb 2043(syslog priority: Warning)
b8f72a62 2044
98c6faba
NB
2045.TP
2046.B TestMessage
2047An array was found at startup, and the
7e23fc43 2048.B \-\-test
98c6faba 2049flag was given.
773135f5 2050(syslog priority: Info)
e0d19036
NB
2051.RE
2052
2053Only
93e790af
SW
2054.B Fail,
2055.B FailSpare,
2056.B DegradedArray,
2057.B SparesMissing
e0d19036 2058and
98c6faba 2059.B TestMessage
e0d19036 2060cause Email to be sent. All events cause the program to be run.
93e790af 2061The program is run with two or three arguments: the event
e0d19036
NB
2062name, the array device and possibly a second device.
2063
2064Each event has an associated array device (e.g.
2065.BR /dev/md1 )
2066and possibly a second device. For
2067.BR Fail ,
2068.BR FailSpare ,
2069and
2070.B SpareActive
2071the second device is the relevant component device.
2072For
2073.B MoveSpare
2074the second device is the array that the spare was moved from.
2075
2076For
51ac42e3 2077.I mdadm
e0d19036 2078to move spares from one array to another, the different arrays need to
93e790af 2079be labeled with the same
e0d19036
NB
2080.B spare-group
2081in the configuration file. The
2082.B spare-group
93e790af 2083name can be any string; it is only necessary that different spare
2d465520 2084groups use different names.
e0d19036
NB
2085
2086When
51ac42e3 2087.I mdadm
93e790af 2088detects that an array in a spare group has fewer active
e0d19036
NB
2089devices than necessary for the complete array, and has no spare
2090devices, it will look for another array in the same spare group that
2091has a full complement of working drive and a spare. It will then
2092attempt to remove the spare from the second drive and add it to the
2093first.
2094If the removal succeeds but the adding fails, then it is added back to
2095the original array.
2096
dd0781e5
NB
2097.SH GROW MODE
2098The GROW mode is used for changing the size or shape of an active
2099array.
2100For this to work, the kernel must support the necessary change.
2ae555c3 2101Various types of growth are being added during 2.6 development,
e0fe762a 2102including restructuring a RAID5 array to have more active devices.
dd0781e5 2103
dfd4d8ee
NB
2104Currently the only support available is to
2105.IP \(bu 4
2106change the "size" attribute
2107for RAID1, RAID5 and RAID6.
2108.IP \(bu 4
f24e2d6c
N
2109increase or decrease the "raid\-devices" attribute of RAID1, RAID5,
2110and RAID6.
2111.IP \bu 4
2112change the chunk-size and layout of RAID5 and RAID6.
2113.IP \bu 4
2114convert between RAID1 and RAID5, and between RAID5 and RAID6.
dfd4d8ee 2115.IP \(bu 4
93e790af 2116add a write-intent bitmap to any array which supports these bitmaps, or
2ae555c3 2117remove a write-intent bitmap from such an array.
dfd4d8ee 2118.PP
dd0781e5 2119
8fd8d9c4
N
2120GROW mode is not currently supported for
2121.B CONTAINERS
2122or arrays inside containers.
2123
2ae555c3 2124.SS SIZE CHANGES
fe80f49b 2125Normally when an array is built the "size" it taken from the smallest
dd0781e5
NB
2126of the drives. If all the small drives in an arrays are, one at a
2127time, removed and replaced with larger drives, then you could have an
2128array of large drives with only a small amount used. In this
2129situation, changing the "size" with "GROW" mode will allow the extra
2130space to start being used. If the size is increased in this way, a
2131"resync" process will start to make sure the new parts of the array
2132are synchronised.
2133
2134Note that when an array changes size, any filesystem that may be
2135stored in the array will not automatically grow to use the space. The
2136filesystem will need to be explicitly told to use the extra space.
2137
e0fe762a
N
2138Also the size of an array cannot be changed while it has an active
2139bitmap. If an array has a bitmap, it must be removed before the size
2140can be changed. Once the change it complete a new bitmap can be created.
2141
2142.SS RAID\-DEVICES CHANGES
2ae555c3 2143
dd0781e5
NB
2144A RAID1 array can work with any number of devices from 1 upwards
2145(though 1 is not very useful). There may be times which you want to
2146increase or decrease the number of active devices. Note that this is
2147different to hot-add or hot-remove which changes the number of
2148inactive devices.
2149
2150When reducing the number of devices in a RAID1 array, the slots which
2151are to be removed from the array must already be vacant. That is, the
93e790af 2152devices which were in those slots must be failed and removed.
dd0781e5
NB
2153
2154When the number of devices is increased, any hot spares that are
a9d69660 2155present will be activated immediately.
dd0781e5 2156
f24e2d6c 2157Changing the number of active devices in a RAID5 or RAID6 is much more
2ae555c3 2158effort. Every block in the array will need to be read and written
f24e2d6c 2159back to a new location. From 2.6.17, the Linux Kernel is able to
ca4f89a3
N
2160increase the number of devices in a RAID5 safely, including restarting
2161an interrupted "reshape". From 2.6.31, the Linux Kernel is able to
f24e2d6c
N
2162increase or decrease the number of devices in a RAID5 or RAID6.
2163
2164When decreasing the number of devices, the size of the array will also
2165decrease. If there was data in the array, it could get destroyed and
2166this is not reversible. To help prevent accidents,
2167.I mdadm
2168requires that the size of the array be decreased first with
2169.BR "mdadm --grow --array-size" .
2170This is a reversible change which simply makes the end of the array
2171inaccessible. The integrity of any data can then be checked before
2172the non-reversible reduction in the number of devices is request.
2ae555c3 2173
e0fe762a 2174When relocating the first few stripes on a RAID5, it is not possible
2ae555c3
NB
2175to keep the data on disk completely consistent and crash-proof. To
2176provide the required safety, mdadm disables writes to the array while
2177this "critical section" is reshaped, and takes a backup of the data
2178that is in that section. This backup is normally stored in any spare
2179devices that the array has, however it can also be stored in a
2180separate file specified with the
7e23fc43 2181.B \-\-backup\-file
2ae555c3
NB
2182option. If this option is used, and the system does crash during the
2183critical period, the same file must be passed to
7e23fc43 2184.B \-\-assemble
2ae555c3
NB
2185to restore the backup and reassemble the array.
2186
f24e2d6c
N
2187.SS LEVEL CHANGES
2188
2189Changing the RAID level of any array happens instantaneously. However
2190in the RAID to RAID6 case this requires a non-standard layout of the
2191RAID6 data, and in the RAID6 to RAID5 case that non-standard layout is
2192required before the change can be accomplish. So while the level
2193change is instant, the accompanying layout change can take quite a
2194long time.
2195
2196.SS CHUNK-SIZE AND LAYOUT CHANGES
2197
2198Changing the chunk-size of layout without also changing the number of
2199devices as the same time will involve re-writing all blocks in-place.
2200To ensure against data loss in the case of a crash, a
2201.B --backup-file
2202must be provided for these changes. Small sections of the array will
2203be copied to the backup file while they are being rearranged.
2204
2205If the reshape is interrupted for any reason, this backup file must be
2206make available to
2207.B "mdadm --assemble"
2208so the array can be reassembled. Consequently the file cannot be
2209stored on the device being reshaped.
2210
2211
2ae555c3
NB
2212.SS BITMAP CHANGES
2213
2214A write-intent bitmap can be added to, or removed from, an active
93e790af 2215array. Either internal bitmaps, or bitmaps stored in a separate file,
fe80f49b 2216can be added. Note that if you add a bitmap stored in a file which is
e0fe762a 2217in a filesystem that is on the RAID array being affected, the system
fe80f49b
NB
2218will deadlock. The bitmap must be on a separate filesystem.
2219
8382f19b
NB
2220.SH INCREMENTAL MODE
2221
2222.HP 12
2223Usage:
7e23fc43
PS
2224.B mdadm \-\-incremental
2225.RB [ \-\-run ]
2226.RB [ \-\-quiet ]
8382f19b
NB
2227.I component-device
2228.HP 12
2229Usage:
29ba4804
N
2230.B mdadm \-\-incremental \-\-fail
2231.I component-device
2232.HP 12
2233Usage:
7e6140e6 2234.B mdadm \-\-incremental \-\-rebuild\-map
8382f19b
NB
2235.HP 12
2236Usage:
7e23fc43 2237.B mdadm \-\-incremental \-\-run \-\-scan
8382f19b 2238
8382f19b
NB
2239.PP
2240This mode is designed to be used in conjunction with a device
2241discovery system. As devices are found in a system, they can be
2242passed to
7e23fc43 2243.B "mdadm \-\-incremental"
8382f19b
NB
2244to be conditionally added to an appropriate array.
2245
29ba4804
N
2246Conversely, it can also be used with the
2247.B \-\-fail
2248flag to do just the opposite and find whatever array a particular device
2249is part of and remove the device from that array.
2250
8fd8d9c4
N
2251If the device passed is a
2252.B CONTAINER
2253device created by a previous call to
2254.IR mdadm ,
2255then rather than trying to add that device to an array, all the arrays
2256described by the metadata of the container will be started.
2257
8382f19b
NB
2258.I mdadm
2259performs a number of tests to determine if the device is part of an
93e790af 2260array, and which array it should be part of. If an appropriate array
8382f19b
NB
2261is found, or can be created,
2262.I mdadm
2263adds the device to the array and conditionally starts the array.
2264
2265Note that
2266.I mdadm
2267will only add devices to an array which were previously working
2268(active or spare) parts of that array. It does not currently support
2269automatic inclusion of a new drive as a spare in some array.
2270
8382f19b
NB
2271The tests that
2272.I mdadm
2273makes are as follow:
2274.IP +
2275Is the device permitted by
2276.BR mdadm.conf ?
2277That is, is it listed in a
2278.B DEVICES
2279line in that file. If
2280.B DEVICES
2281is absent then the default it to allow any device. Similar if
2282.B DEVICES
2283contains the special word
2284.B partitions
2285then any device is allowed. Otherwise the device name given to
2286.I mdadm
2287must match one of the names or patterns in a
2288.B DEVICES
2289line.
2290
2291.IP +
2292Does the device have a valid md superblock. If a specific metadata
2293version is request with
7e23fc43 2294.B \-\-metadata
8382f19b 2295or
7e23fc43 2296.B \-e
8382f19b
NB
2297then only that style of metadata is accepted, otherwise
2298.I mdadm
2299finds any known version of metadata. If no
2300.I md
2301metadata is found, the device is rejected.
2302
d1302dd8 2303.ig
8382f19b
NB
2304.IP +
2305Does the metadata match an expected array?
2306The metadata can match in two ways. Either there is an array listed
2307in
2308.B mdadm.conf
2309which identifies the array (either by UUID, by name, by device list,
93e790af 2310or by minor-number), or the array was created with a
8382f19b 2311.B homehost
93e790af 2312specified and that
8382f19b 2313.B homehost
93e790af 2314matches the one in
8382f19b
NB
2315.B mdadm.conf
2316or on the command line.
2317If
2318.I mdadm
2319is not able to positively identify the array as belonging to the
2320current host, the device will be rejected.
d1302dd8 2321..
8382f19b 2322
8382f19b 2323.I mdadm
93e790af 2324keeps a list of arrays that it has partially assembled in
8382f19b
NB
2325.B /var/run/mdadm/map
2326(or
2327.B /var/run/mdadm.map
e0fe762a
N
2328if the directory doesn't exist. Or maybe even
2329.BR /dev/.mdadm.map ).
2330If no array exists which matches
8382f19b
NB
2331the metadata on the new device,
2332.I mdadm
2333must choose a device name and unit number. It does this based on any
2334name given in
2335.B mdadm.conf
2336or any name information stored in the metadata. If this name
2337suggests a unit number, that number will be used, otherwise a free
2338unit number will be chosen. Normally
2339.I mdadm
2340will prefer to create a partitionable array, however if the
2341.B CREATE
2342line in
2343.B mdadm.conf
2344suggests that a non-partitionable array is preferred, that will be
2345honoured.
2346
e0fe762a
N
2347If the array is not found in the config file and its metadata does not
2348identify it as belonging to the "homehost", then
2349.I mdadm
2350will choose a name for the array which is certain not to conflict with
2351any array which does belong to this host. It does this be adding an
2352underscore and a small number to the name preferred by the metadata.
2353
8382f19b
NB
2354Once an appropriate array is found or created and the device is added,
2355.I mdadm
2356must decide if the array is ready to be started. It will
2357normally compare the number of available (non-spare) devices to the
2358number of devices that the metadata suggests need to be active. If
2359there are at least that many, the array will be started. This means
2360that if any devices are missing the array will not be restarted.
2361
2362As an alternative,
7e23fc43 2363.B \-\-run
8382f19b 2364may be passed to
51ac42e3 2365.I mdadm
8382f19b 2366in which case the array will be run as soon as there are enough
e0fe762a
N
2367devices present for the data to be accessible. For a RAID1, that
2368means one device will start the array. For a clean RAID5, the array
8382f19b
NB
2369will be started as soon as all but one drive is present.
2370
93e790af 2371Note that neither of these approaches is really ideal. If it can
8382f19b
NB
2372be known that all device discovery has completed, then
2373.br
7e23fc43 2374.B " mdadm \-IRs"
8382f19b
NB
2375.br
2376can be run which will try to start all arrays that are being
2377incrementally assembled. They are started in "read-auto" mode in
2378which they are read-only until the first write request. This means
2379that no metadata updates are made and no attempt at resync or recovery
2380happens. Further devices that are found before the first write can
2381still be added safely.
2382
5545fa6d
DW
2383.SH ENVIRONMENT
2384This section describes environment variables that affect how mdadm
2385operates.
2386
2387.TP
2388.B MDADM_NO_MDMON
2389Setting this value to 1 will prevent mdadm from automatically launching
2390mdmon. This variable is intended primarily for debugging mdadm/mdmon.
2391
8fd8d9c4
N
2392.TP
2393.B MDADM_NO_UDEV
2394Normally,
2395.I mdadm
2396does not create any device nodes in /dev, but leaves that task to
2397.IR udev .
2398If
2399.I udev
2400appears not to be configured, or if this environment variable is set
2401to '1', the
2402.I mdadm
2403will create and devices that are needed.
2404
2d465520
NB
2405.SH EXAMPLES
2406
7e23fc43 2407.B " mdadm \-\-query /dev/name-of-device"
2d465520 2408.br
e0fe762a 2409This will find out if a given device is a RAID array, or is part of
5787fa49 2410one, and will provide brief information about the device.
2d465520 2411
7e23fc43 2412.B " mdadm \-\-assemble \-\-scan"
2d465520 2413.br
93e790af 2414This will assemble and start all arrays listed in the standard config
5787fa49 2415file. This command will typically go in a system startup file.
2d465520 2416
7e23fc43 2417.B " mdadm \-\-stop \-\-scan"
5787fa49 2418.br
93e790af 2419This will shut down all arrays that can be shut down (i.e. are not
19f8b8fc 2420currently in use). This will typically go in a system shutdown script.
2d465520 2421
7e23fc43 2422.B " mdadm \-\-follow \-\-scan \-\-delay=120"
2d465520 2423.br
5787fa49
NB
2424If (and only if) there is an Email address or program given in the
2425standard config file, then
2426monitor the status of all arrays listed in that file by
2427polling them ever 2 minutes.
2d465520 2428
7e23fc43 2429.B " mdadm \-\-create /dev/md0 \-\-level=1 \-\-raid\-devices=2 /dev/hd[ac]1"
2d465520 2430.br
5787fa49 2431Create /dev/md0 as a RAID1 array consisting of /dev/hda1 and /dev/hdc1.
2d465520 2432
2d465520 2433.br
7e23fc43 2434.B " echo 'DEVICE /dev/hd*[0\-9] /dev/sd*[0\-9]' > mdadm.conf"
2d465520 2435.br
7e23fc43 2436.B " mdadm \-\-detail \-\-scan >> mdadm.conf"
2d465520 2437.br
5787fa49
NB
2438This will create a prototype config file that describes currently
2439active arrays that are known to be made from partitions of IDE or SCSI drives.
2d465520
NB
2440This file should be reviewed before being used as it may
2441contain unwanted detail.
2442
7e23fc43 2443.B " echo 'DEVICE /dev/hd[a\-z] /dev/sd*[a\-z]' > mdadm.conf"
2d465520 2444.br
7e23fc43 2445.B " mdadm \-\-examine \-\-scan \-\-config=mdadm.conf >> mdadm.conf"
93e790af
SW
2446.br
2447This will find arrays which could be assembled from existing IDE and
2448SCSI whole drives (not partitions), and store the information in the
5787fa49 2449format of a config file.
2d465520
NB
2450This file is very likely to contain unwanted detail, particularly
2451the
2452.B devices=
5787fa49
NB
2453entries. It should be reviewed and edited before being used as an
2454actual config file.
2d465520 2455
7e23fc43 2456.B " mdadm \-\-examine \-\-brief \-\-scan \-\-config=partitions"
2d465520 2457.br
7e23fc43 2458.B " mdadm \-Ebsc partitions"
5787fa49
NB
2459.br
2460Create a list of devices by reading
2461.BR /proc/partitions ,
2462scan these for RAID superblocks, and printout a brief listing of all
93e790af 2463that were found.
2d465520 2464
7e23fc43 2465.B " mdadm \-Ac partitions \-m 0 /dev/md0"
2d465520 2466.br
5787fa49
NB
2467Scan all partitions and devices listed in
2468.BR /proc/partitions
2469and assemble
2470.B /dev/md0
2471out of all such devices with a RAID superblock with a minor number of 0.
2d465520 2472
7e23fc43 2473.B " mdadm \-\-monitor \-\-scan \-\-daemonise > /var/run/mdadm"
d013a55e
NB
2474.br
2475If config file contains a mail address or alert program, run mdadm in
2476the background in monitor mode monitoring all md devices. Also write
2477pid of mdadm daemon to
2478.BR /var/run/mdadm .
2479
7e23fc43 2480.B " mdadm \-Iq /dev/somedevice"
8382f19b
NB
2481.br
2482Try to incorporate newly discovered device into some array as
2483appropriate.
2484
7e6140e6 2485.B " mdadm \-\-incremental \-\-rebuild\-map \-\-run \-\-scan"
8382f19b
NB
2486.br
2487Rebuild the array map from any current arrays, and then start any that
2488can be started.
2489
b80da661
NB
2490.B " mdadm /dev/md4 --fail detached --remove detached"
2491.br
2492Any devices which are components of /dev/md4 will be marked as faulty
2493and then remove from the array.
2494
f24e2d6c
N
2495.B " mdadm --grow /dev/md4 --level=6 --backup-file=/root/backup-md4
2496.br
2497The array
2498.B /dev/md4
2499which is currently a RAID5 array will be converted to RAID6. There
2500should normally already be a spare drive attached to the array as a
2501RAID6 needs one more drive than a matching RAID5.
2502
8fd8d9c4
N
2503.B " mdadm --create /dev/md/ddf --metadata=ddf --raid-disks 6 /dev/sd[a-f]"
2504.br
2505Create a DDF array over 6 devices.
2506
2507.B " mdadm --create /dev/md/home -n3 -l5 -z 30000000 /dev/md/ddf"
2508.br
e0fe762a 2509Create a RAID5 array over any 3 devices in the given DDF set. Use
8fd8d9c4
N
2510only 30 gigabytes of each device.
2511
2512.B " mdadm -A /dev/md/ddf1 /dev/sd[a-f]"
2513.br
2514Assemble a pre-exist ddf array.
2515
2516.B " mdadm -I /dev/md/ddf1"
2517.br
2518Assemble all arrays contained in the ddf array, assigning names as
2519appropriate.
2520
7e23fc43 2521.B " mdadm \-\-create \-\-help"
2d465520 2522.br
2ae555c3 2523Provide help about the Create mode.
2d465520 2524
7e23fc43 2525.B " mdadm \-\-config \-\-help"
5787fa49
NB
2526.br
2527Provide help about the format of the config file.
2d465520 2528
7e23fc43 2529.B " mdadm \-\-help"
5787fa49
NB
2530.br
2531Provide general help.
cd29a5c8 2532
cd29a5c8
NB
2533.SH FILES
2534
2535.SS /proc/mdstat
2536
2ae555c3
NB
2537If you're using the
2538.B /proc
cd29a5c8
NB
2539filesystem,
2540.B /proc/mdstat
2d465520 2541lists all active md devices with information about them.
51ac42e3 2542.I mdadm
2d465520 2543uses this to find arrays when
7e23fc43 2544.B \-\-scan
2d465520
NB
2545is given in Misc mode, and to monitor array reconstruction
2546on Monitor mode.
2547
9a9dab36 2548.SS /etc/mdadm.conf
cd29a5c8 2549
11a3e71d
NB
2550The config file lists which devices may be scanned to see if
2551they contain MD super block, and gives identifying information
2552(e.g. UUID) about known MD arrays. See
2553.BR mdadm.conf (5)
2554for more details.
cd29a5c8 2555
8382f19b
NB
2556.SS /var/run/mdadm/map
2557When
7e23fc43 2558.B \-\-incremental
93e790af 2559mode is used, this file gets a list of arrays currently being created.
8382f19b
NB
2560If
2561.B /var/run/mdadm
2562does not exist as a directory, then
2563.B /var/run/mdadm.map
e0fe762a
N
2564is used instead. If
2565.B /var/run
2566is not available (as may be the case during early boot),
2567.B /dev/.mdadm.map
2568is used on the basis that
2569.B /dev
2570is usually available very early in boot.
8382f19b 2571
48f7b27a
NB
2572.SH DEVICE NAMES
2573
48f7b27a 2574.I mdadm
8fd8d9c4
N
2575understand two sorts of names for array devices.
2576
2577The first is the so-called 'standard' format name, which matches the
2578names used by the kernel and which appear in
2579.IR /proc/mdstat .
2580
2581The second sort can be freely chosen, but must reside in
2582.IR /dev/md/ .
2583When giving a device name to
2584.I mdadm
2585to create or assemble an array, either full path name such as
2586.I /dev/md0
2587or
2588.I /dev/md/home
2589can be given, or just the suffix of the second sort of name, such as
2590.I home
2591can be given.
2592
2593When
2594.I mdadm
e0fe762a
N
2595chooses device names during auto-assembly or incremental assembly, it
2596will sometimes add a small sequence number to the end of the name to
2597avoid conflicted between multiple arrays that have the same name. If
8fd8d9c4
N
2598.I mdadm
2599can reasonably determine that the array really is meant for this host,
2600either by a hostname in the metadata, or by the presence of the array
e0fe762a
N
2601in /etc/mdadm.conf, then it will leave off the suffix if possible.
2602Also if the homehost is specified as
2603.B <ignore>
2604.I mdadm
2605will only use a suffix if a different array of the same name already
2606exists or is listed in the config file.
48f7b27a
NB
2607
2608The standard names for non-partitioned arrays (the only sort of md
8fd8d9c4 2609array available in 2.4 and earlier) are of the form
48f7b27a
NB
2610.IP
2611/dev/mdNN
48f7b27a
NB
2612.PP
2613where NN is a number.
2614The standard names for partitionable arrays (as available from 2.6
8fd8d9c4 2615onwards) are of the form
48f7b27a 2616.IP
48f7b27a
NB
2617/dev/md_dNN
2618.PP
2619Partition numbers should be indicated by added "pMM" to these, thus "/dev/md/d1p2".
8fd8d9c4
N
2620.PP
2621From kernel version, 2.6.28 the "non-partitioned array" can actually
2622be partitioned. So the "md_dNN" names are no longer needed, and
2623partitions such as "/dev/mdNNpXX" are possible.
52826846 2624
2d465520 2625.SH NOTE
51ac42e3 2626.I mdadm
2d465520 2627was previously known as
51ac42e3 2628.IR mdctl .
a9d69660 2629.P
51ac42e3 2630.I mdadm
a9d69660 2631is completely separate from the
51ac42e3 2632.I raidtools
a9d69660
NB
2633package, and does not use the
2634.I /etc/raidtab
2635configuration file at all.
2636
52826846 2637.SH SEE ALSO
75f74377 2638For further information on mdadm usage, MD and the various levels of
3cdfb6a7 2639RAID, see:
3cdfb6a7 2640.IP
11cd8b79 2641.B http://linux\-raid.osdl.org/
75f74377
DG
2642.PP
2643(based upon Jakob \(/Ostergaard's Software\-RAID.HOWTO)
e43d0cda
NB
2644.\".PP
2645.\"for new releases of the RAID driver check out:
2646.\"
2647.\".IP
e0fe762a 2648.\".UR ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
e43d0cda
NB
2649.\"ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
2650.\".UE
2651.\".PP
2652.\"or
2653.\".IP
2654.\".UR http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
2655.\"http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
2656.\".UE
cd29a5c8 2657.PP
2ae555c3 2658The latest version of
a9d69660
NB
2659.I mdadm
2660should always be available from
cd29a5c8 2661.IP
11cd8b79
N
2662.B http://www.kernel.org/pub/linux/utils/raid/mdadm/
2663.PP
2664Related man pages:
cd29a5c8 2665.PP
e0fe762a 2666.IR mdmon (8),
a9d69660
NB
2667.IR mdadm.conf (5),
2668.IR md (4).
56eb10c0 2669.PP
52826846
NB
2670.IR raidtab (5),
2671.IR raid0run (8),
2672.IR raidstop (8),
a9d69660 2673.IR mkraid (8).