]> git.ipfire.org Git - thirdparty/mdadm.git/blob - mdadm.8
Support new offset layout for raid10
[thirdparty/mdadm.git] / mdadm.8
1 .\" -*- nroff -*-
2 .TH MDADM 8 "" v2.4.1
3 .SH NAME
4 mdadm \- manage MD devices
5 .I aka
6 Linux Software Raid.
7
8 .SH SYNOPSIS
9
10 .BI mdadm " [mode] <raiddevice> [options] <component-devices>"
11
12 .SH DESCRIPTION
13 RAID devices are virtual devices created from two or more
14 real block devices. This allows multiple devices (typically disk
15 drives or partitions there-of) to be combined into a single device to
16 hold (for example) a single filesystem.
17 Some RAID levels include redundancy and so can survive some degree of
18 device failure.
19
20 Linux Software RAID devices are implemented through the md (Multiple
21 Devices) device driver.
22
23 Currently, Linux supports
24 .B LINEAR
25 md devices,
26 .B RAID0
27 (striping),
28 .B RAID1
29 (mirroring),
30 .BR RAID4 ,
31 .BR RAID5 ,
32 .BR RAID6 ,
33 .BR RAID10 ,
34 .BR MULTIPATH ,
35 and
36 .BR FAULTY .
37
38 .B MULTIPATH
39 is not a Software RAID mechanism, but does involve
40 multiple devices. For
41 .B MULTIPATH
42 each device is a path to one common physical storage device.
43
44 .B FAULTY
45 is also not true RAID, and it only involves one device. It
46 provides a layer over a true device that can be used to inject faults.
47
48 '''.B mdadm
49 '''is a program that can be used to create, manage, and monitor
50 '''MD devices. As
51 '''such it provides a similar set of functionality to the
52 '''.B raidtools
53 '''packages.
54 '''The key differences between
55 '''.B mdadm
56 '''and
57 '''.B raidtools
58 '''are:
59 '''.IP \(bu 4
60 '''.B mdadm
61 '''is a single program and not a collection of programs.
62 '''.IP \(bu 4
63 '''.B mdadm
64 '''can perform (almost) all of its functions without having a
65 '''configuration file and does not use one by default. Also
66 '''.B mdadm
67 '''helps with management of the configuration
68 '''file.
69 '''.IP \(bu 4
70 '''.B mdadm
71 '''can provide information about your arrays (through Query, Detail, and Examine)
72 '''that
73 '''.B raidtools
74 '''cannot.
75 '''.P
76 '''.I mdadm
77 '''does not use
78 '''.IR /etc/raidtab ,
79 '''the
80 '''.B raidtools
81 '''configuration file, at all. It has a different configuration file
82 '''with a different format and an different purpose.
83
84 .SH MODES
85 mdadm has 7 major modes of operation:
86 .TP
87 .B Assemble
88 Assemble the parts of a previously created
89 array into an active array. Components can be explicitly given
90 or can be searched for.
91 .B mdadm
92 checks that the components
93 do form a bona fide array, and can, on request, fiddle superblock
94 information so as to assemble a faulty array.
95
96 .TP
97 .B Build
98 Build an array that doesn't have per-device superblocks. For these
99 sorts of arrays,
100 .I mdadm
101 cannot differentiate between initial creation and subsequent assembly
102 of an array. It also cannot perform any checks that appropriate
103 devices have been requested. Because of this, the
104 .B Build
105 mode should only be used together with a complete understanding of
106 what you are doing.
107
108 .TP
109 .B Create
110 Create a new array with per-device superblocks.
111 '''It can progress
112 '''in several step create-add-add-run or it can all happen with one command.
113
114 .TP
115 .B "Follow or Monitor"
116 Monitor one or more md devices and act on any state changes. This is
117 only meaningful for raid1, 4, 5, 6, 10 or multipath arrays as
118 only these have interesting state. raid0 or linear never have
119 missing, spare, or failed drives, so there is nothing to monitor.
120
121 .TP
122 .B "Grow"
123 Grow (or shrink) an array, or otherwise reshape it in some way.
124 Currently supported growth options including changing the active size
125 of component devices in RAID level 1/4/5/6 and changing the number of
126 active devices in RAID1.
127
128 .TP
129 .B Manage
130 This is for doing things to specific components of an array such as
131 adding new spares and removing faulty devices.
132
133 .TP
134 .B Misc
135 This is an 'everything else' mode that supports operations on active
136 arrays, operations on component devices such as erasing old superblocks, and
137 information gathering operations.
138 '''This mode allows operations on independent devices such as examine MD
139 '''superblocks, erasing old superblocks and stopping active arrays.
140
141 .SH OPTIONS
142
143 .SH Options for selecting a mode are:
144
145 .TP
146 .BR -A ", " --assemble
147 Assemble a pre-existing array.
148
149 .TP
150 .BR -B ", " --build
151 Build a legacy array without superblocks.
152
153 .TP
154 .BR -C ", " --create
155 Create a new array.
156
157 .TP
158 .BR -F ", " --follow ", " --monitor
159 Select
160 .B Monitor
161 mode.
162
163 .TP
164 .BR -G ", " --grow
165 Change the size or shape of an active array.
166 .P
167 If a device is given before any options, or if the first option is
168 .BR --add ,
169 .BR --fail ,
170 or
171 .BR --remove ,
172 then the MANAGE mode is assume.
173 Anything other than these will cause the
174 .B Misc
175 mode to be assumed.
176
177 .SH Options that are not mode-specific are:
178
179 .TP
180 .BR -h ", " --help
181 Display general help message or, after one of the above options, a
182 mode specific help message.
183
184 .TP
185 .B --help-options
186 Display more detailed help about command line parsing and some commonly
187 used options.
188
189 .TP
190 .BR -V ", " --version
191 Print version information for mdadm.
192
193 .TP
194 .BR -v ", " --verbose
195 Be more verbose about what is happening. This can be used twice to be
196 extra-verbose.
197 The extra verbosity currently only affects
198 .B --detail --scan
199 and
200 .BR "--examine --scan" .
201
202 .TP
203 .BR -q ", " --quiet
204 Avoid printing purely informative messages. With this,
205 .B mdadm
206 will be silent unless there is something really important to report.
207
208 .TP
209 .BR -b ", " --brief
210 Be less verbose. This is used with
211 .B --detail
212 and
213 .BR --examine .
214 Using
215 .B --brief
216 with
217 .B --verbose
218 gives an intermediate level of verbosity.
219
220 .TP
221 .BR -f ", " --force
222 Be more forceful about certain operations. See the various modes of
223 the exact meaning of this option in different contexts.
224
225 .TP
226 .BR -c ", " --config=
227 Specify the config file. Default is to use
228 .BR /etc/mdadm.conf ,
229 or if that is missing, then
230 .BR /etc/mdadm/mdadm.conf .
231 If the config file given is
232 .B partitions
233 then nothing will be read, but
234 .I mdadm
235 will act as though the config file contained exactly
236 .B "DEVICE partitions"
237 and will read
238 .B /proc/partitions
239 to find a list of devices to scan.
240 If the word
241 .B none
242 is given for the config file, then
243 .I mdadm
244 will act as though the config file were empty.
245
246 .TP
247 .BR -s ", " --scan
248 scan config file or
249 .B /proc/mdstat
250 for missing information.
251 In general, this option gives
252 .B mdadm
253 permission to get any missing information, like component devices,
254 array devices, array identities, and alert destination from the
255 configuration file:
256 .BR /etc/mdadm.conf .
257 One exception is MISC mode when using
258 .B --detail
259 or
260 .B --stop
261 in which case
262 .B --scan
263 says to get a list of array devices from
264 .BR /proc/mdstat .
265
266 .TP
267 .B -e ", " --metadata=
268 Declare the style of superblock (raid metadata) to be used. The
269 default is 0.90 for --create, and to guess for other operations.
270
271 Options are:
272 .RS
273 .IP "0, 0.90, default"
274 Use the original 0.90 format superblock. This format limits arrays to
275 28 componenet devices and limits component devices of levels 1 and
276 greater to 2 terabytes.
277 .IP "1, 1.0, 1.1, 1.2"
278 Use the new version-1 format superblock. This has few restrictions.
279 The different subversion store the superblock at different locations
280 on the device, either at the end (for 1.0), at the start (for 1.1) or
281 4K from the start (for 1.2).
282 .RE
283
284 .SH For create, build, or grow:
285
286 .TP
287 .BR -n ", " --raid-devices=
288 Specify the number of active devices in the array. This, plus the
289 number of spare devices (see below) must equal the number of
290 .I component-devices
291 (including "\fBmissing\fP" devices)
292 that are listed on the command line for
293 .BR --create .
294 Setting a value of 1 is probably
295 a mistake and so requires that
296 .B --force
297 be specified first. A value of 1 will then be allowed for linear,
298 multipath, raid0 and raid1. It is never allowed for raid4 or raid5.
299 .br
300 This number can only be changed using
301 .B --grow
302 for RAID1 arrays, and only on kernels which provide necessary support.
303
304 .TP
305 .BR -x ", " --spare-devices=
306 Specify the number of spare (eXtra) devices in the initial array.
307 Spares can also be added
308 and removed later. The number of component devices listed
309 on the command line must equal the number of raid devices plus the
310 number of spare devices.
311
312
313 .TP
314 .BR -z ", " --size=
315 Amount (in Kibibytes) of space to use from each drive in RAID1/4/5/6.
316 This must be a multiple of the chunk size, and must leave about 128Kb
317 of space at the end of the drive for the RAID superblock.
318 If this is not specified
319 (as it normally is not) the smallest drive (or partition) sets the
320 size, though if there is a variance among the drives of greater than 1%, a warning is
321 issued.
322
323 This value can be set with
324 .B --grow
325 for RAID level 1/4/5/6. If the array was created with a size smaller
326 than the currently active drives, the extra space can be accessed
327 using
328 .BR --grow .
329 The size can be given as
330 .B max
331 which means to choose the largest size that fits on all current drives.
332
333 .TP
334 .BR -c ", " --chunk=
335 Specify chunk size of kibibytes. The default is 64.
336
337 .TP
338 .BR --rounding=
339 Specify rounding factor for linear array (==chunk size)
340
341 .TP
342 .BR -l ", " --level=
343 Set raid level. When used with
344 .IR --create ,
345 options are: linear, raid0, 0, stripe, raid1, 1, mirror, raid4, 4,
346 raid5, 5, raid6, 6, raid10, 10, multipath, mp, faulty. Obviously some of these are synonymous.
347
348 When used with
349 .IR --build ,
350 only linear, stripe, raid0, 0, raid1, multipath, mp, and faulty are valid.
351
352 Not yet supported with
353 .IR --grow .
354
355 .TP
356 .BR -p ", " --layout=
357 This option configures the fine details of data layout for raid5,
358 and raid10 arrays, and controls the failure modes for
359 .IR faulty .
360
361 The layout of the raid5 parity block can be one of
362 left-asymmetric,
363 left-symmetric,
364 right-asymmetric,
365 right-symmetric,
366 la, ra, ls, rs. The default is left-symmetric.
367
368 When setting the failure mode for
369 .I faulty
370 the options are:
371 write-transient,
372 wt,
373 read-transient,
374 rt,
375 write-persistent,
376 wp,
377 read-persistent,
378 rp,
379 write-all,
380 read-fixable,
381 rf,
382 clear,
383 flush,
384 none.
385
386 Each mode can be followed by a number which is used as a period
387 between fault generation. Without a number, the fault is generated
388 once on the first relevant request. With a number, the fault will be
389 generated after that many request, and will continue to be generated
390 every time the period elapses.
391
392 Multiple failure modes can be current simultaneously by using the
393 "--grow" option to set subsequent failure modes.
394
395 "clear" or "none" will remove any pending or periodic failure modes,
396 and "flush" will clear any persistent faults.
397
398 To set the parity with "--grow", the level of the array ("faulty")
399 must be specified before the fault mode is specified.
400
401 Finally, the layout options for RAID10 are one of 'n', 'o' or 'p' followed
402 by a small number. The default is 'n2'.
403
404 .I n
405 signals 'near' copies. Multiple copies of one data block are at
406 similar offsets in different devices.
407
408 .I o
409 signals 'offset' copies. Rather than the chunks being duplicated
410 within a stripe, whole stripes are duplicated but are rotated by one
411 device so duplicate blocks are on different devices. Thus subsequent
412 copies of a block are in the next drive, and are one chunk further
413 down.
414
415 .I f
416 signals 'far' copies
417 (multiple copies have very different offsets). See md(4) for more
418 detail about 'near' and 'far'.
419
420 The number is the number of copies of each datablock. 2 is normal, 3
421 can be useful. This number can be at most equal to the number of
422 devices in the array. It does not need to divide evenly into that
423 number (e.g. it is perfectly legal to have an 'n2' layout for an array
424 with an odd number of devices).
425
426 .TP
427 .BR --parity=
428 same as --layout (thus explaining the p of
429 .IR -p ).
430
431 .TP
432 .BR -b ", " --bitmap=
433 Specify a file to store a write-intent bitmap in. The file should not
434 exist unless --force is also given. The same file should be provided
435 when assembling the array. If the word
436 .B internal
437 is given, then the bitmap is stored with the metadata on the array,
438 and so is replicated on all devices. If the word
439 .B none
440 is given with
441 .B --grow
442 mode, then any bitmap that is present is removed.
443
444 To help catch typing errors, the filename must contain at least one
445 slash ('/') if it is a real file (not 'internal' or 'none').
446
447 Note: external bitmaps are only known to work on ext2 and ext3.
448 Storing bitmap files on other filesystems may result in serious problems.
449
450
451 .TP
452 .BR --bitmap-chunk=
453 Set the chunksize of the bitmap. Each bit corresponds to that many
454 Kilobytes of storage. Default is 4 when using a file based bitmap.
455 When using an
456 .B internal
457 bitmap, the chunksize is automatically determined to make best use of
458 available space.
459
460
461 .TP
462 .BR -W ", " --write-mostly
463 subsequent devices lists in a
464 .BR --build ,
465 .BR --create ,
466 or
467 .B --add
468 command will be flagged as 'write-mostly'. This is valid for RAID1
469 only and means that the 'md' driver will avoid reading from these
470 devices if at all possible. This can be useful if mirroring over a
471 slow link.
472
473 .TP
474 .BR --write-behind=
475 Specify that write-behind mode should be enabled (valid for RAID1
476 only). If an argument is specified, it will set the maximum number
477 of outstanding writes allowed. The default value is 256.
478 A write-intent bitmap is required in order to use write-behind
479 mode, and write-behind is only attempted on drives marked as
480 .IR write-mostly .
481
482 .TP
483 .BR --assume-clean
484 Tell
485 .I mdadm
486 that the array pre-existed and is known to be clean. It can be useful
487 when trying to recover from a major failure as you can be sure that no
488 data will be affected unless you actually write to the array. It can
489 also be used when creating a RAID1 or RAID10 if you want to avoid the
490 initial resync, however this practice - while normally safe - is not
491 recommended. Use this ony if you really know what you are doing.
492
493 .TP
494 .BR --backup-file=
495 This is needed when --grow is used to increase the number of
496 raid-devices in a RAID5 if there are no spare devices available.
497 See the section below on RAID_DEVICE CHANGES. The file should be
498 stored on a separate device, not on the raid array being reshaped.
499
500 .TP
501 .BR -N ", " --name=
502 Set a
503 .B name
504 for the array. This is currently only effective when creating an
505 array with a version-1 superblock. The name is a simple textual
506 string that can be used to identify array components when assembling.
507
508 .TP
509 .BR -R ", " --run
510 Insist that
511 .I mdadm
512 run the array, even if some of the components
513 appear to be active in another array or filesystem. Normally
514 .I mdadm
515 will ask for confirmation before including such components in an
516 array. This option causes that question to be suppressed.
517
518 .TP
519 .BR -f ", " --force
520 Insist that
521 .I mdadm
522 accept the geometry and layout specified without question. Normally
523 .I mdadm
524 will not allow creation of an array with only one device, and will try
525 to create a raid5 array with one missing drive (as this makes the
526 initial resync work faster). With
527 .BR --force ,
528 .I mdadm
529 will not try to be so clever.
530
531 .TP
532 .BR -a ", " "--auto{=no,yes,md,mdp,part,p}{NN}"
533 Instruct mdadm to create the device file if needed, possibly allocating
534 an unused minor number. "md" causes a non-partitionable array
535 to be used. "mdp", "part" or "p" causes a partitionable array (2.6 and
536 later) to be used. "yes" requires the named md device to have
537 a 'standard' format, and the type and minor number will be determined
538 from this. See DEVICE NAMES below.
539
540 The argument can also come immediately after
541 "-a". e.g. "-ap".
542
543 If
544 .I --scan
545 is also given, then any
546 .I auto=
547 entries in the config file will over-ride the
548 .I --auto
549 instruction given on the command line.
550
551 For partitionable arrays,
552 .I mdadm
553 will create the device file for the whole array and for the first 4
554 partitions. A different number of partitions can be specified at the
555 end of this option (e.g.
556 .BR --auto=p7 ).
557 If the device name ends with a digit, the partition names add a 'p',
558 and a number, e.g. "/dev/home1p3". If there is no
559 trailing digit, then the partition names just have a number added,
560 e.g. "/dev/scratch3".
561
562 If the md device name is in a 'standard' format as described in DEVICE
563 NAMES, then it will be created, if necessary, with the appropriate
564 number based on that name. If the device name is not in one of these
565 formats, then a unused minor number will be allocated. The minor
566 number will be considered unused if there is no active array for that
567 number, and there is no entry in /dev for that number and with a
568 non-standard name.
569
570 .SH For assemble:
571
572 .TP
573 .BR -u ", " --uuid=
574 uuid of array to assemble. Devices which don't have this uuid are
575 excluded
576
577 .TP
578 .BR -m ", " --super-minor=
579 Minor number of device that array was created for. Devices which
580 don't have this minor number are excluded. If you create an array as
581 /dev/md1, then all superblocks will contain the minor number 1, even if
582 the array is later assembled as /dev/md2.
583
584 Giving the literal word "dev" for
585 .B --super-minor
586 will cause
587 .I mdadm
588 to use the minor number of the md device that is being assembled.
589 e.g. when assembling
590 .BR /dev/md0 ,
591 .M --super-minor=dev
592 will look for super blocks with a minor number of 0.
593
594 .TP
595 .BR -N ", " --name=
596 Specify the name of the array to assemble. This must be the name
597 that was specified when creating the array.
598
599 .TP
600 .BR -f ", " --force
601 Assemble the array even if some superblocks appear out-of-date
602
603 .TP
604 .BR -R ", " --run
605 Attempt to start the array even if fewer drives were given than are
606 needed for a full array. Normally if not all drives are found and
607 .B --scan
608 is not used, then the array will be assembled but not started.
609 With
610 .B --run
611 an attempt will be made to start it anyway.
612
613 .TP
614 .BR -a ", " "--auto{=no,yes,md,mdp,part}"
615 See this option under Create and Build options.
616
617 .TP
618 .BR -b ", " --bitmap=
619 Specify the bitmap file that was given when the array was created. If
620 an array has an
621 .B internal
622 bitmap, there is no need to specify this when assembling the array.
623
624 .TP
625 .BR --backup-file=
626 If
627 .B --backup-file
628 was used to grow the number of raid-devices in a RAID5, and the system
629 crashed during the critical section, then the same
630 .B --backup-file
631 must be presented to --assemble to allow possibly corrupted data to be
632 restored.
633
634 .TP
635 .BR -U ", " --update=
636 Update the superblock on each device while assembling the array. The
637 argument given to this flag can be one of
638 .BR sparc2.2 ,
639 .BR summaries ,
640 .BR uuid ,
641 .BR resync ,
642 .BR byteorder ,
643 or
644 .BR super-minor .
645
646 The
647 .B sparc2.2
648 option will adjust the superblock of an array what was created on a Sparc
649 machine running a patched 2.2 Linux kernel. This kernel got the
650 alignment of part of the superblock wrong. You can use the
651 .B "--examine --sparc2.2"
652 option to
653 .I mdadm
654 to see what effect this would have.
655
656 The
657 .B super-minor
658 option will update the
659 .B "preferred minor"
660 field on each superblock to match the minor number of the array being
661 assembled. This is not needed on 2.6 and later kernels as they make
662 this adjustment automatically.
663
664 The
665 .B uuid
666 option will change the uuid of the array. If a UUID is given with the
667 "--uuid" option that UUID will be used as a new UUID and with
668 .B NOT
669 be used to help identify the devices in the array.
670 If no "--uuid" is given, a random uuid is chosen.
671
672 The
673 .B resync
674 option will cause the array to be marked
675 .I dirty
676 meaning that any redundancy in the array (e.g. parity for raid5,
677 copies for raid1) may be incorrect. This will cause the raid system
678 to perform a "resync" pass to make sure that all redundant information
679 is correct.
680
681 The
682 .B byteorder
683 option allows arrays to be moved between machines with different
684 byte-order.
685 When assembling such an array for the first time after a move, giving
686 .B "--update=byteorder"
687 will cause
688 .I mdadm
689 to expect superblocks to have their byteorder reversed, and will
690 correct that order before assembling the array. This is only valid
691 with original (Version 0.90) superblocks.
692
693 The
694 .B summaries
695 option will correct the summaries in the superblock. That is the
696 counts of total, working, active, failed, and spare devices.
697
698 .SH For Manage mode:
699
700 .TP
701 .BR -a ", " --add
702 hot-add listed devices.
703
704 .TP
705 .BR --re-add
706 re-add a device that was recently removed from an array.
707
708 .TP
709 .BR -r ", " --remove
710 remove listed devices. They must not be active. i.e. they should
711 be failed or spare devices.
712
713 .TP
714 .BR -f ", " --fail
715 mark listed devices as faulty.
716
717 .TP
718 .BR --set-faulty
719 same as --fail.
720
721 .P
722 Each of these options require that the first device list is the array
723 to be acted upon and the remainder are component devices to be added,
724 removed, or marked as fault. Several different operations can be
725 specified for different devices, e.g.
726 .in +5
727 mdadm /dev/md0 --add /dev/sda1 --fail /dev/sdb1 --remove /dev/sdb1
728 .in -5
729 Each operation applies to all devices listed until the next
730 operations.
731
732 If an array is using a write-intent bitmap, then devices which have
733 been removed can be re-added in a way that avoids a full
734 reconstruction but instead just updated the blocks that have changed
735 since the device was removed. For arrays with persistent metadata
736 (superblocks) this is done automatically. For arrays created with
737 .B --build
738 mdadm needs to be told that this device we removed recently with
739 .B --re-add.
740
741 Devices can only be removed from an array if they are not in active
742 use. i.e. that must be spares or failed devices. To remove an active
743 device, it must be marked as
744 .B faulty
745 first.
746
747 .SH For Misc mode:
748
749 .TP
750 .BR -Q ", " --query
751 Examine a device to see
752 (1) if it is an md device and (2) if it is a component of an md
753 array.
754 Information about what is discovered is presented.
755
756 .TP
757 .BR -D ", " --detail
758 Print detail of one or more md devices.
759
760 .TP
761 .BR -E ", " --examine
762 Print content of md superblock on device(s).
763 .TP
764 .B --sparc2.2
765 If an array was created on a 2.2 Linux kernel patched with RAID
766 support, the superblock will have been created incorrectly, or at
767 least incompatibly with 2.4 and later kernels. Using the
768 .B --sparc2.2
769 flag with
770 .B --examine
771 will fix the superblock before displaying it. If this appears to do
772 the right thing, then the array can be successfully assembled using
773 .BR "--assemble --update=sparc2.2" .
774
775 .TP
776 .BR -X ", " --examine-bitmap
777 Report information about a bitmap file.
778
779 .TP
780 .BR -R ", " --run
781 start a partially built array.
782
783 .TP
784 .BR -S ", " --stop
785 deactivate array, releasing all resources.
786
787 .TP
788 .BR -o ", " --readonly
789 mark array as readonly.
790
791 .TP
792 .BR -w ", " --readwrite
793 mark array as readwrite.
794
795 .TP
796 .B --zero-superblock
797 If the device contains a valid md superblock, the block is
798 over-written with zeros. With
799 --force
800 the block where the superblock would be is over-written even if it
801 doesn't appear to be valid.
802
803 .TP
804 .BR -t ", " --test
805 When used with
806 .BR --detail ,
807 the exit status of
808 .I mdadm
809 is set to reflect the status of the device.
810
811 .SH For Monitor mode:
812 .TP
813 .BR -m ", " --mail
814 Give a mail address to send alerts to.
815
816 .TP
817 .BR -p ", " --program ", " --alert
818 Give a program to be run whenever an event is detected.
819
820 .TP
821 .BR -y ", " --syslog
822 Cause all events to be reported through 'syslog'. The messages have
823 facility of 'daemon' and varying priorities.
824
825 .TP
826 .BR -d ", " --delay
827 Give a delay in seconds.
828 .B mdadm
829 polls the md arrays and then waits this many seconds before polling
830 again. The default is 60 seconds.
831
832 .TP
833 .BR -f ", " --daemonise
834 Tell
835 .B mdadm
836 to run as a background daemon if it decides to monitor anything. This
837 causes it to fork and run in the child, and to disconnect form the
838 terminal. The process id of the child is written to stdout.
839 This is useful with
840 .B --scan
841 which will only continue monitoring if a mail address or alert program
842 is found in the config file.
843
844 .TP
845 .BR -i ", " --pid-file
846 When
847 .B mdadm
848 is running in daemon mode, write the pid of the daemon process to
849 the specified file, instead of printing it on standard output.
850
851 .TP
852 .BR -1 ", " --oneshot
853 Check arrays only once. This will generate
854 .B NewArray
855 events and more significantly
856 .B DegradedArray
857 and
858 .B SparesMissing
859 events. Running
860 .in +5
861 .B " mdadm --monitor --scan -1"
862 .in -5
863 from a cron script will ensure regular notification of any degraded arrays.
864
865 .TP
866 .BR -t ", " --test
867 Generate a
868 .B TestMessage
869 alert for every array found at startup. This alert gets mailed and
870 passed to the alert program. This can be used for testing that alert
871 message do get through successfully.
872
873 .SH ASSEMBLE MODE
874
875 .HP 12
876 Usage:
877 .B mdadm --assemble
878 .I md-device options-and-component-devices...
879 .HP 12
880 Usage:
881 .B mdadm --assemble --scan
882 .I md-devices-and-options...
883 .HP 12
884 Usage:
885 .B mdadm --assemble --scan
886 .I options...
887
888 .PP
889 This usage assembles one or more raid arrays from pre-existing components.
890 For each array, mdadm needs to know the md device, the identity of the
891 array, and a number of component-devices. These can be found in a number of ways.
892
893 In the first usage example (without the
894 .BR --scan )
895 the first device given is the md device.
896 In the second usage example, all devices listed are treated as md
897 devices and assembly is attempted.
898 In the third (where no devices are listed) all md devices that are
899 listed in the configuration file are assembled.
900
901 If precisely one device is listed, but
902 .B --scan
903 is not given, then
904 .I mdadm
905 acts as though
906 .B --scan
907 was given and identify information is extracted from the configuration file.
908
909 The identity can be given with the
910 .B --uuid
911 option, with the
912 .B --super-minor
913 option, can be found in the config file, or will be taken from the
914 super block on the first component-device listed on the command line.
915
916 Devices can be given on the
917 .B --assemble
918 command line or in the config file. Only devices which have an md
919 superblock which contains the right identity will be considered for
920 any array.
921
922 The config file is only used if explicitly named with
923 .B --config
924 or requested with (a possibly implicit)
925 .B --scan.
926 In the later case,
927 .B /etc/mdadm.conf
928 is used.
929
930 If
931 .B --scan
932 is not given, then the config file will only be used to find the
933 identity of md arrays.
934
935 Normally the array will be started after it is assembled. However if
936 .B --scan
937 is not given and insufficient drives were listed to start a complete
938 (non-degraded) array, then the array is not started (to guard against
939 usage errors). To insist that the array be started in this case (as
940 may work for RAID1, 4, 5, 6, or 10), give the
941 .B --run
942 flag.
943
944 If an
945 .B auto
946 option is given, either on the command line (--auto) or in the
947 configuration file (e.g. auto=part), then
948 .I mdadm
949 will create the md device if necessary or will re-create it if it
950 doesn't look usable as it is.
951
952 This can be useful for handling partitioned devices (which don't have
953 a stable device number - it can change after a reboot) and when using
954 "udev" to manage your
955 .B /dev
956 tree (udev cannot handle md devices because of the unusual device
957 initialisation conventions).
958
959 If the option to "auto" is "mdp" or "part" or (on the command line
960 only) "p", then mdadm will create a partitionable array, using the
961 first free one that is not in use, and does not already have an entry
962 in /dev (apart from numeric /dev/md* entries).
963
964 If the option to "auto" is "yes" or "md" or (on the command line)
965 nothing, then mdadm will create a traditional, non-partitionable md
966 array.
967
968 It is expected that the "auto" functionality will be used to create
969 device entries with meaningful names such as "/dev/md/home" or
970 "/dev/md/root", rather than names based on the numerical array number.
971
972 When using this option to create a partitionable array, the device
973 files for the first 4 partitions are also created. If a different
974 number is required it can be simply appended to the auto option.
975 e.g. "auto=part8". Partition names are created by appending a digit
976 string to the device name, with an intervening "p" if the device name
977 ends with a digit.
978
979 The
980 .B --auto
981 option is also available in Build and Create modes. As those modes do
982 not use a config file, the "auto=" config option does not apply to
983 these modes.
984
985 .SH BUILD MODE
986
987 .HP 12
988 Usage:
989 .B mdadm --build
990 .I device
991 .BI --chunk= X
992 .BI --level= Y
993 .BI --raid-devices= Z
994 .I devices
995
996 .PP
997 This usage is similar to
998 .BR --create .
999 The difference is that it creates an array without a superblock. With
1000 these arrays there is no difference between initially creating the array and
1001 subsequently assembling the array, except that hopefully there is useful
1002 data there in the second case.
1003
1004 The level may raid0, linear, multipath, or faulty, or one of their
1005 synonyms. All devices must be listed and the array will be started
1006 once complete.
1007
1008 .SH CREATE MODE
1009
1010 .HP 12
1011 Usage:
1012 .B mdadm --create
1013 .I device
1014 .BI --chunk= X
1015 .BI --level= Y
1016 .br
1017 .BI --raid-devices= Z
1018 .I devices
1019
1020 .PP
1021 This usage will initialise a new md array, associate some devices with
1022 it, and activate the array.
1023
1024 If the
1025 .B --auto
1026 option is given (as described in more detail in the section on
1027 Assemble mode), then the md device will be created with a suitable
1028 device number if necessary.
1029
1030 As devices are added, they are checked to see if they contain raid
1031 superblocks or filesystems. They are also checked to see if the variance in
1032 device size exceeds 1%.
1033
1034 If any discrepancy is found, the array will not automatically be run, though
1035 the presence of a
1036 .B --run
1037 can override this caution.
1038
1039 To create a "degraded" array in which some devices are missing, simply
1040 give the word "\fBmissing\fP"
1041 in place of a device name. This will cause
1042 .B mdadm
1043 to leave the corresponding slot in the array empty.
1044 For a RAID4 or RAID5 array at most one slot can be
1045 "\fBmissing\fP"; for a RAID6 array at most two slots.
1046 For a RAID1 array, only one real device needs to be given. All of the
1047 others can be
1048 "\fBmissing\fP".
1049
1050 When creating a RAID5 array,
1051 .B mdadm
1052 will automatically create a degraded array with an extra spare drive.
1053 This is because building the spare into a degraded array is in general faster than resyncing
1054 the parity on a non-degraded, but not clean, array. This feature can
1055 be over-ridden with the
1056 .I --force
1057 option.
1058
1059 '''If the
1060 '''.B --size
1061 '''option is given, it is not necessary to list any component-devices in this command.
1062 '''They can be added later, before a
1063 '''.B --run.
1064 '''If no
1065 '''.B --size
1066 '''is given, the apparent size of the smallest drive given is used.
1067
1068 The General Management options that are valid with --create are:
1069 .TP
1070 .B --run
1071 insist on running the array even if some devices look like they might
1072 be in use.
1073
1074 .TP
1075 .B --readonly
1076 start the array readonly - not supported yet.
1077
1078
1079 .SH MANAGE MODE
1080 .HP 12
1081 Usage:
1082 .B mdadm
1083 .I device
1084 .I options... devices...
1085 .PP
1086
1087 This usage will allow individual devices in an array to be failed,
1088 removed or added. It is possible to perform multiple operations with
1089 on command. For example:
1090 .br
1091 .B " mdadm /dev/md0 -f /dev/hda1 -r /dev/hda1 -a /dev/hda1"
1092 .br
1093 will firstly mark
1094 .B /dev/hda1
1095 as faulty in
1096 .B /dev/md0
1097 and will then remove it from the array and finally add it back
1098 in as a spare. However only one md array can be affected by a single
1099 command.
1100
1101 .SH MISC MODE
1102 .HP 12
1103 Usage:
1104 .B mdadm
1105 .I options ...
1106 .I devices ...
1107 .PP
1108
1109 MISC mode includes a number of distinct operations that
1110 operate on distinct devices. The operations are:
1111 .TP
1112 --query
1113 The device is examined to see if it is
1114 (1) an active md array, or
1115 (2) a component of an md array.
1116 The information discovered is reported.
1117
1118 .TP
1119 --detail
1120 The device should be an active md device.
1121 .B mdadm
1122 will display a detailed description of the array.
1123 .B --brief
1124 or
1125 .B --scan
1126 will cause the output to be less detailed and the format to be
1127 suitable for inclusion in
1128 .BR /etc/mdadm.conf .
1129 The exit status of
1130 .I mdadm
1131 will normally be 0 unless
1132 .I mdadm
1133 failed to get useful information about the device(s). However if the
1134 .B --test
1135 option is given, then the exit status will be:
1136 .RS
1137 .TP
1138 0
1139 The array is functioning normally.
1140 .TP
1141 1
1142 The array has at least one failed device.
1143 .TP
1144 2
1145 The array has multiple failed devices and hence is unusable (raid4 or
1146 raid5).
1147 .TP
1148 4
1149 There was an error while trying to get information about the device.
1150 .RE
1151
1152 .TP
1153 --examine
1154 The device should be a component of an md array.
1155 .B mdadm
1156 will read the md superblock of the device and display the contents.
1157 If
1158 .B --brief
1159 is given, or
1160 .B --scan
1161 then multiple devices that are components of the one array
1162 are grouped together and reported in a single entry suitable
1163 for inclusion in
1164 .BR /etc/mdadm.conf .
1165
1166 Having
1167 .B --scan
1168 without listing any devices will cause all devices listed in the
1169 config file to be examined.
1170
1171 .TP
1172 --stop
1173 The devices should be active md arrays which will be deactivated, as
1174 long as they are not currently in use.
1175
1176 .TP
1177 --run
1178 This will fully activate a partially assembled md array.
1179
1180 .TP
1181 --readonly
1182 This will mark an active array as read-only, providing that it is
1183 not currently being used.
1184
1185 .TP
1186 --readwrite
1187 This will change a
1188 .B readonly
1189 array back to being read/write.
1190
1191 .TP
1192 --scan
1193 For all operations except
1194 .BR --examine ,
1195 .B --scan
1196 will cause the operation to be applied to all arrays listed in
1197 .BR /proc/mdstat .
1198 For
1199 .BR --examine,
1200 .B --scan
1201 causes all devices listed in the config file to be examined.
1202
1203
1204 .SH MONITOR MODE
1205
1206 .HP 12
1207 Usage:
1208 .B mdadm --monitor
1209 .I options... devices...
1210
1211 .PP
1212 This usage causes
1213 .B mdadm
1214 to periodically poll a number of md arrays and to report on any events
1215 noticed.
1216 .B mdadm
1217 will never exit once it decides that there are arrays to be checked,
1218 so it should normally be run in the background.
1219
1220 As well as reporting events,
1221 .B mdadm
1222 may move a spare drive from one array to another if they are in the
1223 same
1224 .B spare-group
1225 and if the destination array has a failed drive but no spares.
1226
1227 If any devices are listed on the command line,
1228 .B mdadm
1229 will only monitor those devices. Otherwise all arrays listed in the
1230 configuration file will be monitored. Further, if
1231 .B --scan
1232 is given, then any other md devices that appear in
1233 .B /proc/mdstat
1234 will also be monitored.
1235
1236 The result of monitoring the arrays is the generation of events.
1237 These events are passed to a separate program (if specified) and may
1238 be mailed to a given E-mail address.
1239
1240 When passing event to program, the program is run once for each event
1241 and is given 2 or 3 command-line arguments. The first is the
1242 name of the event (see below). The second is the name of the
1243 md device which is affected, and the third is the name of a related
1244 device if relevant, such as a component device that has failed.
1245
1246 If
1247 .B --scan
1248 is given, then a program or an E-mail address must be specified on the
1249 command line or in the config file. If neither are available, then
1250 .B mdadm
1251 will not monitor anything.
1252 Without
1253 .B --scan
1254 .B mdadm
1255 will continue monitoring as long as something was found to monitor. If
1256 no program or email is given, then each event is reported to
1257 .BR stdout .
1258
1259 The different events are:
1260
1261 .RS 4
1262 .TP
1263 .B DeviceDisappeared
1264 An md array which previously was configured appears to no longer be
1265 configured. (syslog priority: Critical)
1266
1267 If
1268 .I mdadm
1269 was told to monitor an array which is RAID0 or Linear, then it will
1270 report
1271 .B DeviceDisappeared
1272 with the extra information
1273 .BR Wrong-Level .
1274 This is because RAID0 and Linear do not support the device-failed,
1275 hot-spare and resync operations which are monitored.
1276
1277 .TP
1278 .B RebuildStarted
1279 An md array started reconstruction. (syslog priority: Warning)
1280
1281 .TP
1282 .BI Rebuild NN
1283 Where
1284 .I NN
1285 is 20, 40, 60, or 80, this indicates that rebuild has passed that many
1286 percentage of the total. (syslog priority: Warning)
1287
1288 .TP
1289 .B RebuildFinished
1290 An md array that was rebuilding, isn't any more, either because it
1291 finished normally or was aborted. (syslog priority: Warning)
1292
1293 .TP
1294 .B Fail
1295 An active component device of an array has been marked as
1296 faulty. (syslog priority: Critical)
1297
1298 .TP
1299 .B FailSpare
1300 A spare component device which was being rebuilt to replace a faulty
1301 device has failed. (syslog priority: Critial)
1302
1303 .TP
1304 .B SpareActive
1305 A spare component device which was being rebuilt to replace a faulty
1306 device as been successfully rebuild and has been made active.
1307 (syslog priority: Info)
1308
1309 .TP
1310 .B NewArray
1311 A new md array has been detected in the
1312 .B /proc/mdstat
1313 file. (syslog priority: Info)
1314
1315 .TP
1316 .B DegradedArray
1317 A newly noticed array appears to be degraded. This message is not
1318 generated when
1319 .I mdadm
1320 notices a drive failure which causes degradation, but only when
1321 .I mdadm
1322 notices that an array is degraded when it first sees the array.
1323 (syslog priority: Critial)
1324
1325 .TP
1326 .B MoveSpare
1327 A spare drive has been moved from one array in a
1328 .B spare-group
1329 to another to allow a failed drive to be replaced.
1330 (syslog priority: Info)
1331
1332 .TP
1333 .B SparesMissing
1334 If
1335 .I mdadm
1336 has been told, via the config file, that an array should have a certain
1337 number of spare devices, and
1338 .I mdadm
1339 detects that it has fewer that this number when it first sees the
1340 array, it will report a
1341 .B SparesMissing
1342 message.
1343 (syslog priority: Warning)
1344
1345 .TP
1346 .B TestMessage
1347 An array was found at startup, and the
1348 .B --test
1349 flag was given.
1350 (syslog priority: Info)
1351 .RE
1352
1353 Only
1354 .B Fail ,
1355 .B FailSpare ,
1356 .B DegradedArray ,
1357 .B SparesMissing ,
1358 and
1359 .B TestMessage
1360 cause Email to be sent. All events cause the program to be run.
1361 The program is run with two or three arguments, they being the event
1362 name, the array device and possibly a second device.
1363
1364 Each event has an associated array device (e.g.
1365 .BR /dev/md1 )
1366 and possibly a second device. For
1367 .BR Fail ,
1368 .BR FailSpare ,
1369 and
1370 .B SpareActive
1371 the second device is the relevant component device.
1372 For
1373 .B MoveSpare
1374 the second device is the array that the spare was moved from.
1375
1376 For
1377 .B mdadm
1378 to move spares from one array to another, the different arrays need to
1379 be labelled with the same
1380 .B spare-group
1381 in the configuration file. The
1382 .B spare-group
1383 name can be any string. It is only necessary that different spare
1384 groups use different names.
1385
1386 When
1387 .B mdadm
1388 detects that an array which is in a spare group has fewer active
1389 devices than necessary for the complete array, and has no spare
1390 devices, it will look for another array in the same spare group that
1391 has a full complement of working drive and a spare. It will then
1392 attempt to remove the spare from the second drive and add it to the
1393 first.
1394 If the removal succeeds but the adding fails, then it is added back to
1395 the original array.
1396
1397 .SH GROW MODE
1398 The GROW mode is used for changing the size or shape of an active
1399 array.
1400 For this to work, the kernel must support the necessary change.
1401 Various types of growth are being added during 2.6 development,
1402 including restructuring a raid5 array to have more active devices.
1403
1404 Currently the only support available is to
1405 .IP \(bu 4
1406 change the "size" attribute
1407 for RAID1, RAID5 and RAID6.
1408 .IP \(bu 4
1409 increase the "raid-disks" attribute of RAID1 and RAID5.
1410 .IP \(bu 4
1411 add a write-intent bitmap to any array which support these bitmaps, or
1412 remove a write-intent bitmap from such an array.
1413 .PP
1414
1415 .SS SIZE CHANGES
1416 Normally when an array is built the "size" it taken from the smallest
1417 of the drives. If all the small drives in an arrays are, one at a
1418 time, removed and replaced with larger drives, then you could have an
1419 array of large drives with only a small amount used. In this
1420 situation, changing the "size" with "GROW" mode will allow the extra
1421 space to start being used. If the size is increased in this way, a
1422 "resync" process will start to make sure the new parts of the array
1423 are synchronised.
1424
1425 Note that when an array changes size, any filesystem that may be
1426 stored in the array will not automatically grow to use the space. The
1427 filesystem will need to be explicitly told to use the extra space.
1428
1429 .SS RAID-DEVICES CHANGES
1430
1431 A RAID1 array can work with any number of devices from 1 upwards
1432 (though 1 is not very useful). There may be times which you want to
1433 increase or decrease the number of active devices. Note that this is
1434 different to hot-add or hot-remove which changes the number of
1435 inactive devices.
1436
1437 When reducing the number of devices in a RAID1 array, the slots which
1438 are to be removed from the array must already be vacant. That is, the
1439 devices that which were in those slots must be failed and removed.
1440
1441 When the number of devices is increased, any hot spares that are
1442 present will be activated immediately.
1443
1444 Increasing the number of active devices in a RAID5 is much more
1445 effort. Every block in the array will need to be read and written
1446 back to a new location. From 2.6.17, the Linux Kernel is able to do
1447 this safely, including restart and interrupted "reshape".
1448
1449 When relocating the first few stripes on a raid5, it is not possible
1450 to keep the data on disk completely consistent and crash-proof. To
1451 provide the required safety, mdadm disables writes to the array while
1452 this "critical section" is reshaped, and takes a backup of the data
1453 that is in that section. This backup is normally stored in any spare
1454 devices that the array has, however it can also be stored in a
1455 separate file specified with the
1456 .B --backup-file
1457 option. If this option is used, and the system does crash during the
1458 critical period, the same file must be passed to
1459 .B --assemble
1460 to restore the backup and reassemble the array.
1461
1462 .SS BITMAP CHANGES
1463
1464 A write-intent bitmap can be added to, or removed from, an active
1465 array. Either internal bitmaps, or bitmaps stored in a separate file
1466 can be added. Note that if you add a bitmap stored in a file which is
1467 in a filesystem that is on the raid array being affected, the system
1468 will deadlock. The bitmap must be on a separate filesystem.
1469
1470 .SH EXAMPLES
1471
1472 .B " mdadm --query /dev/name-of-device"
1473 .br
1474 This will find out if a given device is a raid array, or is part of
1475 one, and will provide brief information about the device.
1476
1477 .B " mdadm --assemble --scan"
1478 .br
1479 This will assemble and start all arrays listed in the standard config file
1480 file. This command will typically go in a system startup file.
1481
1482 .B " mdadm --stop --scan"
1483 .br
1484 This will shut down all array that can be shut down (i.e. are not
1485 currently in use). This will typically go in a system shutdown script.
1486
1487 .B " mdadm --follow --scan --delay=120"
1488 .br
1489 If (and only if) there is an Email address or program given in the
1490 standard config file, then
1491 monitor the status of all arrays listed in that file by
1492 polling them ever 2 minutes.
1493
1494 .B " mdadm --create /dev/md0 --level=1 --raid-devices=2 /dev/hd[ac]1"
1495 .br
1496 Create /dev/md0 as a RAID1 array consisting of /dev/hda1 and /dev/hdc1.
1497
1498 .br
1499 .B " echo 'DEVICE /dev/hd*[0-9] /dev/sd*[0-9]' > mdadm.conf"
1500 .br
1501 .B " mdadm --detail --scan >> mdadm.conf"
1502 .br
1503 This will create a prototype config file that describes currently
1504 active arrays that are known to be made from partitions of IDE or SCSI drives.
1505 This file should be reviewed before being used as it may
1506 contain unwanted detail.
1507
1508 .B " echo 'DEVICE /dev/hd[a-z] /dev/sd*[a-z]' > mdadm.conf"
1509 .br
1510 .B " mdadm --examine --scan --config=mdadm.conf >> mdadm.conf"
1511 .ber
1512 This will find what arrays could be assembled from existing IDE and
1513 SCSI whole drives (not partitions) and store the information is the
1514 format of a config file.
1515 This file is very likely to contain unwanted detail, particularly
1516 the
1517 .B devices=
1518 entries. It should be reviewed and edited before being used as an
1519 actual config file.
1520
1521 .B " mdadm --examine --brief --scan --config=partitions"
1522 .br
1523 .B " mdadm -Ebsc partitions"
1524 .br
1525 Create a list of devices by reading
1526 .BR /proc/partitions ,
1527 scan these for RAID superblocks, and printout a brief listing of all
1528 that was found.
1529
1530 .B " mdadm -Ac partitions -m 0 /dev/md0"
1531 .br
1532 Scan all partitions and devices listed in
1533 .BR /proc/partitions
1534 and assemble
1535 .B /dev/md0
1536 out of all such devices with a RAID superblock with a minor number of 0.
1537
1538 .B " mdadm --monitor --scan --daemonise > /var/run/mdadm"
1539 .br
1540 If config file contains a mail address or alert program, run mdadm in
1541 the background in monitor mode monitoring all md devices. Also write
1542 pid of mdadm daemon to
1543 .BR /var/run/mdadm .
1544
1545 .B " mdadm --create --help"
1546 .br
1547 Provide help about the Create mode.
1548
1549 .B " mdadm --config --help"
1550 .br
1551 Provide help about the format of the config file.
1552
1553 .B " mdadm --help"
1554 .br
1555 Provide general help.
1556
1557
1558 .SH FILES
1559
1560 .SS /proc/mdstat
1561
1562 If you're using the
1563 .B /proc
1564 filesystem,
1565 .B /proc/mdstat
1566 lists all active md devices with information about them.
1567 .B mdadm
1568 uses this to find arrays when
1569 .B --scan
1570 is given in Misc mode, and to monitor array reconstruction
1571 on Monitor mode.
1572
1573
1574 .SS /etc/mdadm.conf
1575
1576 The config file lists which devices may be scanned to see if
1577 they contain MD super block, and gives identifying information
1578 (e.g. UUID) about known MD arrays. See
1579 .BR mdadm.conf (5)
1580 for more details.
1581
1582 .SH DEVICE NAMES
1583
1584 While entries in the /dev directory can have any format you like,
1585 .I mdadm
1586 has an understanding of 'standard' formats which it uses to guide its
1587 behaviour when creating device files via the
1588 .I --auto
1589 option.
1590
1591 The standard names for non-partitioned arrays (the only sort of md
1592 array available in 2.4 and earlier) either of
1593 .IP
1594 /dev/mdNN
1595 .br
1596 /dev/md/NN
1597 .PP
1598 where NN is a number.
1599 The standard names for partitionable arrays (as available from 2.6
1600 onwards) is one of
1601 .IP
1602 /dev/md/dNN
1603 .br
1604 /dev/md_dNN
1605 .PP
1606 Partition numbers should be indicated by added "pMM" to these, thus "/dev/md/d1p2".
1607
1608 .SH NOTE
1609 .B mdadm
1610 was previously known as
1611 .BR mdctl .
1612 .P
1613 .B mdadm
1614 is completely separate from the
1615 .B raidtools
1616 package, and does not use the
1617 .I /etc/raidtab
1618 configuration file at all.
1619
1620 .SH SEE ALSO
1621 For information on the various levels of
1622 RAID, check out:
1623
1624 .IP
1625 .UR http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1626 http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1627 .UE
1628 '''.PP
1629 '''for new releases of the RAID driver check out:
1630 '''
1631 '''.IP
1632 '''.UR ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1633 '''ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1634 '''.UE
1635 '''.PP
1636 '''or
1637 '''.IP
1638 '''.UR http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1639 '''http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1640 '''.UE
1641 .PP
1642 The latest version of
1643 .I mdadm
1644 should always be available from
1645 .IP
1646 .UR http://www.kernel.org/pub/linux/utils/raid/mdadm/
1647 http://www.kernel.org/pub/linux/utils/raid/mdadm/
1648 .UE
1649 .PP
1650 .IR mdadm.conf (5),
1651 .IR md (4).
1652 .PP
1653 .IR raidtab (5),
1654 .IR raid0run (8),
1655 .IR raidstop (8),
1656 .IR mkraid (8).