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