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