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