Initial import from FreeBSD RELENG_4:
[dragonfly.git] / usr.sbin / mlxcontrol / mlxcontrol.8
1 .\"
2 .\" Copyright (c) 2000 Michael Smith
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. The name of the author may not be used to endorse or promote products
11 .\"    derived from this software without specific prior written permission
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 .\"
24 .\" $FreeBSD: src/usr.sbin/mlxcontrol/mlxcontrol.8,v 1.3.2.5 2001/08/16 15:56:07 ru Exp $
25 .\"
26 .Dd April 10, 2000
27 .Dt MLXCONTROL 8
28 .Os
29 .Sh NAME
30 .Nm mlxcontrol
31 .Nd Mylex DAC-family RAID management utility
32 .Sh SYNOPSIS
33 .Nm
34 .Aq command
35 .Op args
36 .Nm
37 status
38 .Op Fl qv
39 .Op Ar drive
40 .Nm
41 rescan
42 .Ar controller
43 .Op Ar controller ...
44 .Nm
45 detach
46 .Ar drive
47 .Op Ar drive ...
48 .Nm
49 detach
50 .Fl a
51 .Nm
52 check
53 .Ar drive
54 .Nm
55 config
56 .Ar controller
57 .Nm
58 help
59 .Ar command
60 .Sh DESCRIPTION
61 The
62 .Nm
63 utility provides status monitoring and management functions
64 for devices attached
65 to the
66 .Xr mlx 4
67 driver.
68 .Pp
69 Controller names are of the form "mlxN"
70 where N is the unit number of the controller.
71 Drive names are of the form "mlxdN"
72 where N is the unit number of the drive.
73 Do not specify the path to a device node.
74 .Pp
75 .Bl -tag -width status
76 .It status
77 Print the status of controllers and system drives.
78 If one or more drives are specified,
79 only print information about these drives,
80 otherwise print information
81 about all controllers and drives in the system.
82 With the
83 .Fl v
84 flag, display much more verbose information.
85 With the
86 .Fl q
87 flag, do not print any output.
88 This command returns
89 0 if all drives tested are online,
90 1 if one or more drives are critical and
91 2 if one or more are offline.
92 .It rescan
93 Rescan one or more controllers for non-attached system drives
94 (eg. drives that have been
95 detached or created subsequent to driver initialisation).
96 If the
97 .Fl a
98 flag is supplied, rescan all controllers in the system.
99 .It detach
100 Detach one or more system drives.
101 Drives must be unmounted
102 and not opened by any other utility for this command to succeed.
103 If the
104 .Fl a
105 flag is supplied, detach all system drives from the nominated controller.
106 .It check
107 Initiate a consistency check and repair pass on a redundant system drive
108 (eg. RAID1 or RAID5).
109 The controller will scan the system drive and repair any inconsistencies.
110 This command returns immediately;
111 use the
112 .Ar status
113 command to monitor the progress of the check.
114 .It config
115 Print the current configuration from the nominated controller.
116 This command will be updated
117 to allow addition/deletion of system drives from a configuration
118 in a future release.
119 .It help
120 Print usage information for
121 .Ar command .
122 .El
123 .Sh BUGS
124 The
125 .Ar config
126 command does not yet support modifying system drive configuration.
127 .Pp
128 Error log extraction is not yet supported.
129 .Sh AUTHORS
130 The mlxcontrol utility was written by
131 .An Michael Smith
132 .Aq msmith@FreeBSD.org .