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