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