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