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