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