]> git.ipfire.org Git - thirdparty/mdadm.git/blob - mdadm.8
Support --update=homehost to allow updating of homehost information.
[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 a 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 .TP
451 .BR --bitmap-chunk=
452 Set the chunksize of the bitmap. Each bit corresponds to that many
453 Kilobytes of storage.
454 When using a file based bitmap, the default is to use the smallest
455 size that is atleast 4 and requires no more than 2^21 chunks.
456 When using an
457 .B internal
458 bitmap, the chunksize is automatically determined to make best use of
459 available space.
460
461
462 .TP
463 .BR -W ", " --write-mostly
464 subsequent devices lists in a
465 .BR --build ,
466 .BR --create ,
467 or
468 .B --add
469 command will be flagged as 'write-mostly'. This is valid for RAID1
470 only and means that the 'md' driver will avoid reading from these
471 devices if at all possible. This can be useful if mirroring over a
472 slow link.
473
474 .TP
475 .BR --write-behind=
476 Specify that write-behind mode should be enabled (valid for RAID1
477 only). If an argument is specified, it will set the maximum number
478 of outstanding writes allowed. The default value is 256.
479 A write-intent bitmap is required in order to use write-behind
480 mode, and write-behind is only attempted on drives marked as
481 .IR write-mostly .
482
483 .TP
484 .BR --assume-clean
485 Tell
486 .I mdadm
487 that the array pre-existed and is known to be clean. It can be useful
488 when trying to recover from a major failure as you can be sure that no
489 data will be affected unless you actually write to the array. It can
490 also be used when creating a RAID1 or RAID10 if you want to avoid the
491 initial resync, however this practice - while normally safe - is not
492 recommended. Use this ony if you really know what you are doing.
493
494 .TP
495 .BR --backup-file=
496 This is needed when --grow is used to increase the number of
497 raid-devices in a RAID5 if there are no spare devices available.
498 See the section below on RAID_DEVICE CHANGES. The file should be
499 stored on a separate device, not on the raid array being reshaped.
500
501 .TP
502 .BR -N ", " --name=
503 Set a
504 .B name
505 for the array. This is currently only effective when creating an
506 array with a version-1 superblock. The name is a simple textual
507 string that can be used to identify array components when assembling.
508
509 .TP
510 .BR -R ", " --run
511 Insist that
512 .I mdadm
513 run the array, even if some of the components
514 appear to be active in another array or filesystem. Normally
515 .I mdadm
516 will ask for confirmation before including such components in an
517 array. This option causes that question to be suppressed.
518
519 .TP
520 .BR -f ", " --force
521 Insist that
522 .I mdadm
523 accept the geometry and layout specified without question. Normally
524 .I mdadm
525 will not allow creation of an array with only one device, and will try
526 to create a raid5 array with one missing drive (as this makes the
527 initial resync work faster). With
528 .BR --force ,
529 .I mdadm
530 will not try to be so clever.
531
532 .TP
533 .BR -a ", " "--auto{=no,yes,md,mdp,part,p}{NN}"
534 Instruct mdadm to create the device file if needed, possibly allocating
535 an unused minor number. "md" causes a non-partitionable array
536 to be used. "mdp", "part" or "p" causes a partitionable array (2.6 and
537 later) to be used. "yes" requires the named md device to have
538 a 'standard' format, and the type and minor number will be determined
539 from this. See DEVICE NAMES below.
540
541 The argument can also come immediately after
542 "-a". e.g. "-ap".
543
544 If
545 .I --scan
546 is also given, then any
547 .I auto=
548 entries in the config file will over-ride the
549 .I --auto
550 instruction given on the command line.
551
552 For partitionable arrays,
553 .I mdadm
554 will create the device file for the whole array and for the first 4
555 partitions. A different number of partitions can be specified at the
556 end of this option (e.g.
557 .BR --auto=p7 ).
558 If the device name ends with a digit, the partition names add a 'p',
559 and a number, e.g. "/dev/home1p3". If there is no
560 trailing digit, then the partition names just have a number added,
561 e.g. "/dev/scratch3".
562
563 If the md device name is in a 'standard' format as described in DEVICE
564 NAMES, then it will be created, if necessary, with the appropriate
565 number based on that name. If the device name is not in one of these
566 formats, then a unused minor number will be allocated. The minor
567 number will be considered unused if there is no active array for that
568 number, and there is no entry in /dev for that number and with a
569 non-standard name.
570
571 .SH For assemble:
572
573 .TP
574 .BR -u ", " --uuid=
575 uuid of array to assemble. Devices which don't have this uuid are
576 excluded
577
578 .TP
579 .BR -m ", " --super-minor=
580 Minor number of device that array was created for. Devices which
581 don't have this minor number are excluded. If you create an array as
582 /dev/md1, then all superblocks will contain the minor number 1, even if
583 the array is later assembled as /dev/md2.
584
585 Giving the literal word "dev" for
586 .B --super-minor
587 will cause
588 .I mdadm
589 to use the minor number of the md device that is being assembled.
590 e.g. when assembling
591 .BR /dev/md0 ,
592 .M --super-minor=dev
593 will look for super blocks with a minor number of 0.
594
595 .TP
596 .BR -N ", " --name=
597 Specify the name of the array to assemble. This must be the name
598 that was specified when creating the array.
599
600 .TP
601 .BR -f ", " --force
602 Assemble the array even if some superblocks appear out-of-date
603
604 .TP
605 .BR -R ", " --run
606 Attempt to start the array even if fewer drives were given than were
607 present last time the array was active. Normally if not all the
608 expected drives are found and
609 .B --scan
610 is not used, then the array will be assembled but not started.
611 With
612 .B --run
613 an attempt will be made to start it anyway.
614
615 .TP
616 .B --no-degraded
617 This is the reverse of
618 .B --run
619 in that it inhibits the started if array unless all expected drives
620 are present. This is only needed with
621 .B --scan
622 and can be used if you physical connections to devices are
623 not as reliable as you would like.
624
625 .TP
626 .BR -a ", " "--auto{=no,yes,md,mdp,part}"
627 See this option under Create and Build options.
628
629 .TP
630 .BR -b ", " --bitmap=
631 Specify the bitmap file that was given when the array was created. If
632 an array has an
633 .B internal
634 bitmap, there is no need to specify this when assembling the array.
635
636 .TP
637 .BR --backup-file=
638 If
639 .B --backup-file
640 was used to grow the number of raid-devices in a RAID5, and the system
641 crashed during the critical section, then the same
642 .B --backup-file
643 must be presented to --assemble to allow possibly corrupted data to be
644 restored.
645
646 .TP
647 .BR -U ", " --update=
648 Update the superblock on each device while assembling the array. The
649 argument given to this flag can be one of
650 .BR sparc2.2 ,
651 .BR summaries ,
652 .BR uuid ,
653 .BR name ,
654 .BR homehost ,
655 .BR resync ,
656 .BR byteorder ,
657 or
658 .BR super-minor .
659
660 The
661 .B sparc2.2
662 option will adjust the superblock of an array what was created on a Sparc
663 machine running a patched 2.2 Linux kernel. This kernel got the
664 alignment of part of the superblock wrong. You can use the
665 .B "--examine --sparc2.2"
666 option to
667 .I mdadm
668 to see what effect this would have.
669
670 The
671 .B super-minor
672 option will update the
673 .B "preferred minor"
674 field on each superblock to match the minor number of the array being
675 assembled. This is not needed on 2.6 and later kernels as they make
676 this adjustment automatically.
677
678 The
679 .B uuid
680 option will change the uuid of the array. If a UUID is given with the
681 "--uuid" option that UUID will be used as a new UUID and with
682 .B NOT
683 be used to help identify the devices in the array.
684 If no "--uuid" is given, a random uuid is chosen.
685
686 The
687 .B name
688 option will change the
689 .I name
690 of the array as stored in the superblock. This is only supported for
691 version-1 superblocks.
692
693 The
694 .B homehost
695 option will change the
696 .I homehost
697 as recorded in the superblock. For version-0 superblocks, this is the
698 same as updating the UUID.
699 For version-1 superblocks, this involves updating the name.
700
701 The
702 .B resync
703 option will cause the array to be marked
704 .I dirty
705 meaning that any redundancy in the array (e.g. parity for raid5,
706 copies for raid1) may be incorrect. This will cause the raid system
707 to perform a "resync" pass to make sure that all redundant information
708 is correct.
709
710 The
711 .B byteorder
712 option allows arrays to be moved between machines with different
713 byte-order.
714 When assembling such an array for the first time after a move, giving
715 .B "--update=byteorder"
716 will cause
717 .I mdadm
718 to expect superblocks to have their byteorder reversed, and will
719 correct that order before assembling the array. This is only valid
720 with original (Version 0.90) superblocks.
721
722 The
723 .B summaries
724 option will correct the summaries in the superblock. That is the
725 counts of total, working, active, failed, and spare devices.
726
727 .SH For Manage mode:
728
729 .TP
730 .BR -a ", " --add
731 hot-add listed devices.
732
733 .TP
734 .BR --re-add
735 re-add a device that was recently removed from an array.
736
737 .TP
738 .BR -r ", " --remove
739 remove listed devices. They must not be active. i.e. they should
740 be failed or spare devices.
741
742 .TP
743 .BR -f ", " --fail
744 mark listed devices as faulty.
745
746 .TP
747 .BR --set-faulty
748 same as --fail.
749
750 .P
751 Each of these options require that the first device list is the array
752 to be acted upon and the remainder are component devices to be added,
753 removed, or marked as fault. Several different operations can be
754 specified for different devices, e.g.
755 .in +5
756 mdadm /dev/md0 --add /dev/sda1 --fail /dev/sdb1 --remove /dev/sdb1
757 .in -5
758 Each operation applies to all devices listed until the next
759 operations.
760
761 If an array is using a write-intent bitmap, then devices which have
762 been removed can be re-added in a way that avoids a full
763 reconstruction but instead just updated the blocks that have changed
764 since the device was removed. For arrays with persistent metadata
765 (superblocks) this is done automatically. For arrays created with
766 .B --build
767 mdadm needs to be told that this device we removed recently with
768 .B --re-add.
769
770 Devices can only be removed from an array if they are not in active
771 use. i.e. that must be spares or failed devices. To remove an active
772 device, it must be marked as
773 .B faulty
774 first.
775
776 .SH For Misc mode:
777
778 .TP
779 .BR -Q ", " --query
780 Examine a device to see
781 (1) if it is an md device and (2) if it is a component of an md
782 array.
783 Information about what is discovered is presented.
784
785 .TP
786 .BR -D ", " --detail
787 Print detail of one or more md devices.
788
789 .TP
790 .BR -E ", " --examine
791 Print content of md superblock on device(s).
792 .TP
793 .B --sparc2.2
794 If an array was created on a 2.2 Linux kernel patched with RAID
795 support, the superblock will have been created incorrectly, or at
796 least incompatibly with 2.4 and later kernels. Using the
797 .B --sparc2.2
798 flag with
799 .B --examine
800 will fix the superblock before displaying it. If this appears to do
801 the right thing, then the array can be successfully assembled using
802 .BR "--assemble --update=sparc2.2" .
803
804 .TP
805 .BR -X ", " --examine-bitmap
806 Report information about a bitmap file.
807
808 .TP
809 .BR -R ", " --run
810 start a partially built array.
811
812 .TP
813 .BR -S ", " --stop
814 deactivate array, releasing all resources.
815
816 .TP
817 .BR -o ", " --readonly
818 mark array as readonly.
819
820 .TP
821 .BR -w ", " --readwrite
822 mark array as readwrite.
823
824 .TP
825 .B --zero-superblock
826 If the device contains a valid md superblock, the block is
827 over-written with zeros. With
828 --force
829 the block where the superblock would be is over-written even if it
830 doesn't appear to be valid.
831
832 .TP
833 .BR -t ", " --test
834 When used with
835 .BR --detail ,
836 the exit status of
837 .I mdadm
838 is set to reflect the status of the device.
839
840 .SH For Monitor mode:
841 .TP
842 .BR -m ", " --mail
843 Give a mail address to send alerts to.
844
845 .TP
846 .BR -p ", " --program ", " --alert
847 Give a program to be run whenever an event is detected.
848
849 .TP
850 .BR -y ", " --syslog
851 Cause all events to be reported through 'syslog'. The messages have
852 facility of 'daemon' and varying priorities.
853
854 .TP
855 .BR -d ", " --delay
856 Give a delay in seconds.
857 .B mdadm
858 polls the md arrays and then waits this many seconds before polling
859 again. The default is 60 seconds.
860
861 .TP
862 .BR -f ", " --daemonise
863 Tell
864 .B mdadm
865 to run as a background daemon if it decides to monitor anything. This
866 causes it to fork and run in the child, and to disconnect form the
867 terminal. The process id of the child is written to stdout.
868 This is useful with
869 .B --scan
870 which will only continue monitoring if a mail address or alert program
871 is found in the config file.
872
873 .TP
874 .BR -i ", " --pid-file
875 When
876 .B mdadm
877 is running in daemon mode, write the pid of the daemon process to
878 the specified file, instead of printing it on standard output.
879
880 .TP
881 .BR -1 ", " --oneshot
882 Check arrays only once. This will generate
883 .B NewArray
884 events and more significantly
885 .B DegradedArray
886 and
887 .B SparesMissing
888 events. Running
889 .in +5
890 .B " mdadm --monitor --scan -1"
891 .in -5
892 from a cron script will ensure regular notification of any degraded arrays.
893
894 .TP
895 .BR -t ", " --test
896 Generate a
897 .B TestMessage
898 alert for every array found at startup. This alert gets mailed and
899 passed to the alert program. This can be used for testing that alert
900 message do get through successfully.
901
902 .SH ASSEMBLE MODE
903
904 .HP 12
905 Usage:
906 .B mdadm --assemble
907 .I md-device options-and-component-devices...
908 .HP 12
909 Usage:
910 .B mdadm --assemble --scan
911 .I md-devices-and-options...
912 .HP 12
913 Usage:
914 .B mdadm --assemble --scan
915 .I options...
916
917 .PP
918 This usage assembles one or more raid arrays from pre-existing components.
919 For each array, mdadm needs to know the md device, the identity of the
920 array, and a number of component-devices. These can be found in a number of ways.
921
922 In the first usage example (without the
923 .BR --scan )
924 the first device given is the md device.
925 In the second usage example, all devices listed are treated as md
926 devices and assembly is attempted.
927 In the third (where no devices are listed) all md devices that are
928 listed in the configuration file are assembled.
929
930 If precisely one device is listed, but
931 .B --scan
932 is not given, then
933 .I mdadm
934 acts as though
935 .B --scan
936 was given and identify information is extracted from the configuration file.
937
938 The identity can be given with the
939 .B --uuid
940 option, with the
941 .B --super-minor
942 option, can be found in the config file, or will be taken from the
943 super block on the first component-device listed on the command line.
944
945 Devices can be given on the
946 .B --assemble
947 command line or in the config file. Only devices which have an md
948 superblock which contains the right identity will be considered for
949 any array.
950
951 The config file is only used if explicitly named with
952 .B --config
953 or requested with (a possibly implicit)
954 .B --scan.
955 In the later case,
956 .B /etc/mdadm.conf
957 is used.
958
959 If
960 .B --scan
961 is not given, then the config file will only be used to find the
962 identity of md arrays.
963
964 Normally the array will be started after it is assembled. However if
965 .B --scan
966 is not given and insufficient drives were listed to start a complete
967 (non-degraded) array, then the array is not started (to guard against
968 usage errors). To insist that the array be started in this case (as
969 may work for RAID1, 4, 5, 6, or 10), give the
970 .B --run
971 flag.
972
973 If an
974 .B auto
975 option is given, either on the command line (--auto) or in the
976 configuration file (e.g. auto=part), then
977 .I mdadm
978 will create the md device if necessary or will re-create it if it
979 doesn't look usable as it is.
980
981 This can be useful for handling partitioned devices (which don't have
982 a stable device number - it can change after a reboot) and when using
983 "udev" to manage your
984 .B /dev
985 tree (udev cannot handle md devices because of the unusual device
986 initialisation conventions).
987
988 If the option to "auto" is "mdp" or "part" or (on the command line
989 only) "p", then mdadm will create a partitionable array, using the
990 first free one that is not in use, and does not already have an entry
991 in /dev (apart from numeric /dev/md* entries).
992
993 If the option to "auto" is "yes" or "md" or (on the command line)
994 nothing, then mdadm will create a traditional, non-partitionable md
995 array.
996
997 It is expected that the "auto" functionality will be used to create
998 device entries with meaningful names such as "/dev/md/home" or
999 "/dev/md/root", rather than names based on the numerical array number.
1000
1001 When using this option to create a partitionable array, the device
1002 files for the first 4 partitions are also created. If a different
1003 number is required it can be simply appended to the auto option.
1004 e.g. "auto=part8". Partition names are created by appending a digit
1005 string to the device name, with an intervening "p" if the device name
1006 ends with a digit.
1007
1008 The
1009 .B --auto
1010 option is also available in Build and Create modes. As those modes do
1011 not use a config file, the "auto=" config option does not apply to
1012 these modes.
1013
1014 .SH BUILD MODE
1015
1016 .HP 12
1017 Usage:
1018 .B mdadm --build
1019 .I device
1020 .BI --chunk= X
1021 .BI --level= Y
1022 .BI --raid-devices= Z
1023 .I devices
1024
1025 .PP
1026 This usage is similar to
1027 .BR --create .
1028 The difference is that it creates an array without a superblock. With
1029 these arrays there is no difference between initially creating the array and
1030 subsequently assembling the array, except that hopefully there is useful
1031 data there in the second case.
1032
1033 The level may raid0, linear, multipath, or faulty, or one of their
1034 synonyms. All devices must be listed and the array will be started
1035 once complete.
1036
1037 .SH CREATE MODE
1038
1039 .HP 12
1040 Usage:
1041 .B mdadm --create
1042 .I device
1043 .BI --chunk= X
1044 .BI --level= Y
1045 .br
1046 .BI --raid-devices= Z
1047 .I devices
1048
1049 .PP
1050 This usage will initialise a new md array, associate some devices with
1051 it, and activate the array.
1052
1053 If the
1054 .B --auto
1055 option is given (as described in more detail in the section on
1056 Assemble mode), then the md device will be created with a suitable
1057 device number if necessary.
1058
1059 As devices are added, they are checked to see if they contain raid
1060 superblocks or filesystems. They are also checked to see if the variance in
1061 device size exceeds 1%.
1062
1063 If any discrepancy is found, the array will not automatically be run, though
1064 the presence of a
1065 .B --run
1066 can override this caution.
1067
1068 To create a "degraded" array in which some devices are missing, simply
1069 give the word "\fBmissing\fP"
1070 in place of a device name. This will cause
1071 .B mdadm
1072 to leave the corresponding slot in the array empty.
1073 For a RAID4 or RAID5 array at most one slot can be
1074 "\fBmissing\fP"; for a RAID6 array at most two slots.
1075 For a RAID1 array, only one real device needs to be given. All of the
1076 others can be
1077 "\fBmissing\fP".
1078
1079 When creating a RAID5 array,
1080 .B mdadm
1081 will automatically create a degraded array with an extra spare drive.
1082 This is because building the spare into a degraded array is in general faster than resyncing
1083 the parity on a non-degraded, but not clean, array. This feature can
1084 be over-ridden with the
1085 .I --force
1086 option.
1087
1088 '''If the
1089 '''.B --size
1090 '''option is given, it is not necessary to list any component-devices in this command.
1091 '''They can be added later, before a
1092 '''.B --run.
1093 '''If no
1094 '''.B --size
1095 '''is given, the apparent size of the smallest drive given is used.
1096
1097 The General Management options that are valid with --create are:
1098 .TP
1099 .B --run
1100 insist on running the array even if some devices look like they might
1101 be in use.
1102
1103 .TP
1104 .B --readonly
1105 start the array readonly - not supported yet.
1106
1107
1108 .SH MANAGE MODE
1109 .HP 12
1110 Usage:
1111 .B mdadm
1112 .I device
1113 .I options... devices...
1114 .PP
1115
1116 This usage will allow individual devices in an array to be failed,
1117 removed or added. It is possible to perform multiple operations with
1118 on command. For example:
1119 .br
1120 .B " mdadm /dev/md0 -f /dev/hda1 -r /dev/hda1 -a /dev/hda1"
1121 .br
1122 will firstly mark
1123 .B /dev/hda1
1124 as faulty in
1125 .B /dev/md0
1126 and will then remove it from the array and finally add it back
1127 in as a spare. However only one md array can be affected by a single
1128 command.
1129
1130 .SH MISC MODE
1131 .HP 12
1132 Usage:
1133 .B mdadm
1134 .I options ...
1135 .I devices ...
1136 .PP
1137
1138 MISC mode includes a number of distinct operations that
1139 operate on distinct devices. The operations are:
1140 .TP
1141 --query
1142 The device is examined to see if it is
1143 (1) an active md array, or
1144 (2) a component of an md array.
1145 The information discovered is reported.
1146
1147 .TP
1148 --detail
1149 The device should be an active md device.
1150 .B mdadm
1151 will display a detailed description of the array.
1152 .B --brief
1153 or
1154 .B --scan
1155 will cause the output to be less detailed and the format to be
1156 suitable for inclusion in
1157 .BR /etc/mdadm.conf .
1158 The exit status of
1159 .I mdadm
1160 will normally be 0 unless
1161 .I mdadm
1162 failed to get useful information about the device(s). However if the
1163 .B --test
1164 option is given, then the exit status will be:
1165 .RS
1166 .TP
1167 0
1168 The array is functioning normally.
1169 .TP
1170 1
1171 The array has at least one failed device.
1172 .TP
1173 2
1174 The array has multiple failed devices and hence is unusable (raid4 or
1175 raid5).
1176 .TP
1177 4
1178 There was an error while trying to get information about the device.
1179 .RE
1180
1181 .TP
1182 --examine
1183 The device should be a component of an md array.
1184 .B mdadm
1185 will read the md superblock of the device and display the contents.
1186 If
1187 .B --brief
1188 is given, or
1189 .B --scan
1190 then multiple devices that are components of the one array
1191 are grouped together and reported in a single entry suitable
1192 for inclusion in
1193 .BR /etc/mdadm.conf .
1194
1195 Having
1196 .B --scan
1197 without listing any devices will cause all devices listed in the
1198 config file to be examined.
1199
1200 .TP
1201 --stop
1202 The devices should be active md arrays which will be deactivated, as
1203 long as they are not currently in use.
1204
1205 .TP
1206 --run
1207 This will fully activate a partially assembled md array.
1208
1209 .TP
1210 --readonly
1211 This will mark an active array as read-only, providing that it is
1212 not currently being used.
1213
1214 .TP
1215 --readwrite
1216 This will change a
1217 .B readonly
1218 array back to being read/write.
1219
1220 .TP
1221 --scan
1222 For all operations except
1223 .BR --examine ,
1224 .B --scan
1225 will cause the operation to be applied to all arrays listed in
1226 .BR /proc/mdstat .
1227 For
1228 .BR --examine,
1229 .B --scan
1230 causes all devices listed in the config file to be examined.
1231
1232
1233 .SH MONITOR MODE
1234
1235 .HP 12
1236 Usage:
1237 .B mdadm --monitor
1238 .I options... devices...
1239
1240 .PP
1241 This usage causes
1242 .B mdadm
1243 to periodically poll a number of md arrays and to report on any events
1244 noticed.
1245 .B mdadm
1246 will never exit once it decides that there are arrays to be checked,
1247 so it should normally be run in the background.
1248
1249 As well as reporting events,
1250 .B mdadm
1251 may move a spare drive from one array to another if they are in the
1252 same
1253 .B spare-group
1254 and if the destination array has a failed drive but no spares.
1255
1256 If any devices are listed on the command line,
1257 .B mdadm
1258 will only monitor those devices. Otherwise all arrays listed in the
1259 configuration file will be monitored. Further, if
1260 .B --scan
1261 is given, then any other md devices that appear in
1262 .B /proc/mdstat
1263 will also be monitored.
1264
1265 The result of monitoring the arrays is the generation of events.
1266 These events are passed to a separate program (if specified) and may
1267 be mailed to a given E-mail address.
1268
1269 When passing event to program, the program is run once for each event
1270 and is given 2 or 3 command-line arguments. The first is the
1271 name of the event (see below). The second is the name of the
1272 md device which is affected, and the third is the name of a related
1273 device if relevant, such as a component device that has failed.
1274
1275 If
1276 .B --scan
1277 is given, then a program or an E-mail address must be specified on the
1278 command line or in the config file. If neither are available, then
1279 .B mdadm
1280 will not monitor anything.
1281 Without
1282 .B --scan
1283 .B mdadm
1284 will continue monitoring as long as something was found to monitor. If
1285 no program or email is given, then each event is reported to
1286 .BR stdout .
1287
1288 The different events are:
1289
1290 .RS 4
1291 .TP
1292 .B DeviceDisappeared
1293 An md array which previously was configured appears to no longer be
1294 configured. (syslog priority: Critical)
1295
1296 If
1297 .I mdadm
1298 was told to monitor an array which is RAID0 or Linear, then it will
1299 report
1300 .B DeviceDisappeared
1301 with the extra information
1302 .BR Wrong-Level .
1303 This is because RAID0 and Linear do not support the device-failed,
1304 hot-spare and resync operations which are monitored.
1305
1306 .TP
1307 .B RebuildStarted
1308 An md array started reconstruction. (syslog priority: Warning)
1309
1310 .TP
1311 .BI Rebuild NN
1312 Where
1313 .I NN
1314 is 20, 40, 60, or 80, this indicates that rebuild has passed that many
1315 percentage of the total. (syslog priority: Warning)
1316
1317 .TP
1318 .B RebuildFinished
1319 An md array that was rebuilding, isn't any more, either because it
1320 finished normally or was aborted. (syslog priority: Warning)
1321
1322 .TP
1323 .B Fail
1324 An active component device of an array has been marked as
1325 faulty. (syslog priority: Critical)
1326
1327 .TP
1328 .B FailSpare
1329 A spare component device which was being rebuilt to replace a faulty
1330 device has failed. (syslog priority: Critial)
1331
1332 .TP
1333 .B SpareActive
1334 A spare component device which was being rebuilt to replace a faulty
1335 device has been successfully rebuilt and has been made active.
1336 (syslog priority: Info)
1337
1338 .TP
1339 .B NewArray
1340 A new md array has been detected in the
1341 .B /proc/mdstat
1342 file. (syslog priority: Info)
1343
1344 .TP
1345 .B DegradedArray
1346 A newly noticed array appears to be degraded. This message is not
1347 generated when
1348 .I mdadm
1349 notices a drive failure which causes degradation, but only when
1350 .I mdadm
1351 notices that an array is degraded when it first sees the array.
1352 (syslog priority: Critial)
1353
1354 .TP
1355 .B MoveSpare
1356 A spare drive has been moved from one array in a
1357 .B spare-group
1358 to another to allow a failed drive to be replaced.
1359 (syslog priority: Info)
1360
1361 .TP
1362 .B SparesMissing
1363 If
1364 .I mdadm
1365 has been told, via the config file, that an array should have a certain
1366 number of spare devices, and
1367 .I mdadm
1368 detects that it has fewer that this number when it first sees the
1369 array, it will report a
1370 .B SparesMissing
1371 message.
1372 (syslog priority: Warning)
1373
1374 .TP
1375 .B TestMessage
1376 An array was found at startup, and the
1377 .B --test
1378 flag was given.
1379 (syslog priority: Info)
1380 .RE
1381
1382 Only
1383 .B Fail ,
1384 .B FailSpare ,
1385 .B DegradedArray ,
1386 .B SparesMissing ,
1387 and
1388 .B TestMessage
1389 cause Email to be sent. All events cause the program to be run.
1390 The program is run with two or three arguments, they being the event
1391 name, the array device and possibly a second device.
1392
1393 Each event has an associated array device (e.g.
1394 .BR /dev/md1 )
1395 and possibly a second device. For
1396 .BR Fail ,
1397 .BR FailSpare ,
1398 and
1399 .B SpareActive
1400 the second device is the relevant component device.
1401 For
1402 .B MoveSpare
1403 the second device is the array that the spare was moved from.
1404
1405 For
1406 .B mdadm
1407 to move spares from one array to another, the different arrays need to
1408 be labelled with the same
1409 .B spare-group
1410 in the configuration file. The
1411 .B spare-group
1412 name can be any string. It is only necessary that different spare
1413 groups use different names.
1414
1415 When
1416 .B mdadm
1417 detects that an array which is in a spare group has fewer active
1418 devices than necessary for the complete array, and has no spare
1419 devices, it will look for another array in the same spare group that
1420 has a full complement of working drive and a spare. It will then
1421 attempt to remove the spare from the second drive and add it to the
1422 first.
1423 If the removal succeeds but the adding fails, then it is added back to
1424 the original array.
1425
1426 .SH GROW MODE
1427 The GROW mode is used for changing the size or shape of an active
1428 array.
1429 For this to work, the kernel must support the necessary change.
1430 Various types of growth are being added during 2.6 development,
1431 including restructuring a raid5 array to have more active devices.
1432
1433 Currently the only support available is to
1434 .IP \(bu 4
1435 change the "size" attribute
1436 for RAID1, RAID5 and RAID6.
1437 .IP \(bu 4
1438 increase the "raid-disks" attribute of RAID1 and RAID5.
1439 .IP \(bu 4
1440 add a write-intent bitmap to any array which support these bitmaps, or
1441 remove a write-intent bitmap from such an array.
1442 .PP
1443
1444 .SS SIZE CHANGES
1445 Normally when an array is built the "size" it taken from the smallest
1446 of the drives. If all the small drives in an arrays are, one at a
1447 time, removed and replaced with larger drives, then you could have an
1448 array of large drives with only a small amount used. In this
1449 situation, changing the "size" with "GROW" mode will allow the extra
1450 space to start being used. If the size is increased in this way, a
1451 "resync" process will start to make sure the new parts of the array
1452 are synchronised.
1453
1454 Note that when an array changes size, any filesystem that may be
1455 stored in the array will not automatically grow to use the space. The
1456 filesystem will need to be explicitly told to use the extra space.
1457
1458 .SS RAID-DEVICES CHANGES
1459
1460 A RAID1 array can work with any number of devices from 1 upwards
1461 (though 1 is not very useful). There may be times which you want to
1462 increase or decrease the number of active devices. Note that this is
1463 different to hot-add or hot-remove which changes the number of
1464 inactive devices.
1465
1466 When reducing the number of devices in a RAID1 array, the slots which
1467 are to be removed from the array must already be vacant. That is, the
1468 devices that which were in those slots must be failed and removed.
1469
1470 When the number of devices is increased, any hot spares that are
1471 present will be activated immediately.
1472
1473 Increasing the number of active devices in a RAID5 is much more
1474 effort. Every block in the array will need to be read and written
1475 back to a new location. From 2.6.17, the Linux Kernel is able to do
1476 this safely, including restart and interrupted "reshape".
1477
1478 When relocating the first few stripes on a raid5, it is not possible
1479 to keep the data on disk completely consistent and crash-proof. To
1480 provide the required safety, mdadm disables writes to the array while
1481 this "critical section" is reshaped, and takes a backup of the data
1482 that is in that section. This backup is normally stored in any spare
1483 devices that the array has, however it can also be stored in a
1484 separate file specified with the
1485 .B --backup-file
1486 option. If this option is used, and the system does crash during the
1487 critical period, the same file must be passed to
1488 .B --assemble
1489 to restore the backup and reassemble the array.
1490
1491 .SS BITMAP CHANGES
1492
1493 A write-intent bitmap can be added to, or removed from, an active
1494 array. Either internal bitmaps, or bitmaps stored in a separate file
1495 can be added. Note that if you add a bitmap stored in a file which is
1496 in a filesystem that is on the raid array being affected, the system
1497 will deadlock. The bitmap must be on a separate filesystem.
1498
1499 .SH EXAMPLES
1500
1501 .B " mdadm --query /dev/name-of-device"
1502 .br
1503 This will find out if a given device is a raid array, or is part of
1504 one, and will provide brief information about the device.
1505
1506 .B " mdadm --assemble --scan"
1507 .br
1508 This will assemble and start all arrays listed in the standard config file
1509 file. This command will typically go in a system startup file.
1510
1511 .B " mdadm --stop --scan"
1512 .br
1513 This will shut down all array that can be shut down (i.e. are not
1514 currently in use). This will typically go in a system shutdown script.
1515
1516 .B " mdadm --follow --scan --delay=120"
1517 .br
1518 If (and only if) there is an Email address or program given in the
1519 standard config file, then
1520 monitor the status of all arrays listed in that file by
1521 polling them ever 2 minutes.
1522
1523 .B " mdadm --create /dev/md0 --level=1 --raid-devices=2 /dev/hd[ac]1"
1524 .br
1525 Create /dev/md0 as a RAID1 array consisting of /dev/hda1 and /dev/hdc1.
1526
1527 .br
1528 .B " echo 'DEVICE /dev/hd*[0-9] /dev/sd*[0-9]' > mdadm.conf"
1529 .br
1530 .B " mdadm --detail --scan >> mdadm.conf"
1531 .br
1532 This will create a prototype config file that describes currently
1533 active arrays that are known to be made from partitions of IDE or SCSI drives.
1534 This file should be reviewed before being used as it may
1535 contain unwanted detail.
1536
1537 .B " echo 'DEVICE /dev/hd[a-z] /dev/sd*[a-z]' > mdadm.conf"
1538 .br
1539 .B " mdadm --examine --scan --config=mdadm.conf >> mdadm.conf"
1540 .ber
1541 This will find what arrays could be assembled from existing IDE and
1542 SCSI whole drives (not partitions) and store the information is the
1543 format of a config file.
1544 This file is very likely to contain unwanted detail, particularly
1545 the
1546 .B devices=
1547 entries. It should be reviewed and edited before being used as an
1548 actual config file.
1549
1550 .B " mdadm --examine --brief --scan --config=partitions"
1551 .br
1552 .B " mdadm -Ebsc partitions"
1553 .br
1554 Create a list of devices by reading
1555 .BR /proc/partitions ,
1556 scan these for RAID superblocks, and printout a brief listing of all
1557 that was found.
1558
1559 .B " mdadm -Ac partitions -m 0 /dev/md0"
1560 .br
1561 Scan all partitions and devices listed in
1562 .BR /proc/partitions
1563 and assemble
1564 .B /dev/md0
1565 out of all such devices with a RAID superblock with a minor number of 0.
1566
1567 .B " mdadm --monitor --scan --daemonise > /var/run/mdadm"
1568 .br
1569 If config file contains a mail address or alert program, run mdadm in
1570 the background in monitor mode monitoring all md devices. Also write
1571 pid of mdadm daemon to
1572 .BR /var/run/mdadm .
1573
1574 .B " mdadm --create --help"
1575 .br
1576 Provide help about the Create mode.
1577
1578 .B " mdadm --config --help"
1579 .br
1580 Provide help about the format of the config file.
1581
1582 .B " mdadm --help"
1583 .br
1584 Provide general help.
1585
1586
1587 .SH FILES
1588
1589 .SS /proc/mdstat
1590
1591 If you're using the
1592 .B /proc
1593 filesystem,
1594 .B /proc/mdstat
1595 lists all active md devices with information about them.
1596 .B mdadm
1597 uses this to find arrays when
1598 .B --scan
1599 is given in Misc mode, and to monitor array reconstruction
1600 on Monitor mode.
1601
1602
1603 .SS /etc/mdadm.conf
1604
1605 The config file lists which devices may be scanned to see if
1606 they contain MD super block, and gives identifying information
1607 (e.g. UUID) about known MD arrays. See
1608 .BR mdadm.conf (5)
1609 for more details.
1610
1611 .SH DEVICE NAMES
1612
1613 While entries in the /dev directory can have any format you like,
1614 .I mdadm
1615 has an understanding of 'standard' formats which it uses to guide its
1616 behaviour when creating device files via the
1617 .I --auto
1618 option.
1619
1620 The standard names for non-partitioned arrays (the only sort of md
1621 array available in 2.4 and earlier) either of
1622 .IP
1623 /dev/mdNN
1624 .br
1625 /dev/md/NN
1626 .PP
1627 where NN is a number.
1628 The standard names for partitionable arrays (as available from 2.6
1629 onwards) is one of
1630 .IP
1631 /dev/md/dNN
1632 .br
1633 /dev/md_dNN
1634 .PP
1635 Partition numbers should be indicated by added "pMM" to these, thus "/dev/md/d1p2".
1636
1637 .SH NOTE
1638 .B mdadm
1639 was previously known as
1640 .BR mdctl .
1641 .P
1642 .B mdadm
1643 is completely separate from the
1644 .B raidtools
1645 package, and does not use the
1646 .I /etc/raidtab
1647 configuration file at all.
1648
1649 .SH SEE ALSO
1650 For information on the various levels of
1651 RAID, check out:
1652
1653 .IP
1654 .UR http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1655 http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1656 .UE
1657 '''.PP
1658 '''for new releases of the RAID driver check out:
1659 '''
1660 '''.IP
1661 '''.UR ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1662 '''ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1663 '''.UE
1664 '''.PP
1665 '''or
1666 '''.IP
1667 '''.UR http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1668 '''http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1669 '''.UE
1670 .PP
1671 The latest version of
1672 .I mdadm
1673 should always be available from
1674 .IP
1675 .UR http://www.kernel.org/pub/linux/utils/raid/mdadm/
1676 http://www.kernel.org/pub/linux/utils/raid/mdadm/
1677 .UE
1678 .PP
1679 .IR mdadm.conf (5),
1680 .IR md (4).
1681 .PP
1682 .IR raidtab (5),
1683 .IR raid0run (8),
1684 .IR raidstop (8),
1685 .IR mkraid (8).