]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sbin/geom/core/geom.8
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sbin / geom / core / geom.8
1 .\" Copyright (c) 2004-2005 Pawel Jakub Dawidek <pjd@FreeBSD.org>
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd May 21, 2004
28 .Dt GEOM 8
29 .Os
30 .Sh NAME
31 .Nm geom
32 .Nd "universal control utility for GEOM classes"
33 .Sh SYNOPSIS
34 .Nm
35 .Ar class
36 .Cm help
37 .Nm
38 .Ar class
39 .Cm list
40 .Op Ar name ...
41 .Nm
42 .Ar class
43 .Cm status
44 .Op Fl s
45 .Op Ar name ...
46 .Nm
47 .Ar class
48 .Cm load
49 .Op Fl v
50 .Nm
51 .Ar class
52 .Cm unload
53 .Op Fl v
54 .Sh DESCRIPTION
55 The
56 .Nm
57 utility is used to control various GEOM classes.
58 A class has to be aware of
59 .Xr geom 8
60 comunication methods, but there are also some standard commands
61 which can be used for existing
62 .Xr geom 8
63 unaware classes.
64 Here is the list of standard commands:
65 .Bl -tag -width ".Cm status"
66 .It Cm help
67 List all available commands for the given class.
68 .It Cm list
69 Print detailed information (within the given class) about all geoms
70 (if no additional arguments were specified) or the given geoms.
71 This command is only available if the given class exists in the kernel.
72 .It Cm status
73 Print general information (within the given class) about all geoms
74 (if no additional arguments were specified) or the given geoms.
75 This command is only available if the given class exists in the kernel.
76 .Pp
77 Additional options include:
78 .Bl -tag -width ".Fl s"
79 .It Fl s
80 Produce script-friendly output.
81 .El
82 .It Cm load
83 Load the kernel module that implements the given class.
84 This command is only available if the class does not yet exist in the kernel and
85 the file
86 .Pa geom_ Ns Ao Ar class Ac Ns Pa .ko
87 can be found in one of the directories specifed in
88 .Va kern.module_path
89 sysctl.
90 .It Cm unload
91 Unload the kernel module which implements the given class.
92 This command is only available if the given class is loaded as a
93 kernel module.
94 .El
95 .Pp
96 Class-specific commands are implemented as shared libraries which
97 are stored in
98 .Pa /lib/geom/
99 directory and are loaded via
100 .Xr dlopen 3
101 function when the class name is known.
102 When a class-specific shared library exists, a direct utility should also be
103 available under the name of
104 .Nm g Ns Ar class .
105 .Pp
106 Currently available classes which are aware of
107 .Xr geom 8 :
108 .Pp
109 .Bl -bullet -offset indent -compact
110 .It
111 CONCAT
112 .It
113 ELI
114 .It
115 LABEL
116 .It
117 MIRROR
118 .It
119 NOP
120 .It
121 RAID3
122 .It
123 SHSEC
124 .It
125 STRIPE
126 .It
127 VIRSTOR
128 .El
129 .Sh ENVIRONMENT
130 The following environment variables affect the execution of
131 .Nm :
132 .Bl -tag -width ".Ev GEOM_LIBRARY_PATH"
133 .It Ev GEOM_LIBRARY_PATH
134 Specifies the path where shared libraries are stored instead of
135 .Pa /lib/geom/ .
136 Multiple paths can be specified with a colon-separated list of paths.
137 .El
138 .Sh EXIT STATUS
139 Exit status is 0 on success, and 1 if the command fails.
140 .Sh EXAMPLES
141 The following example shows how to set up a stripe on three disks for automatic
142 configuration:
143 .Bd -literal -offset indent
144 geom stripe label -v -s 65536 data /dev/da0 /dev/da1 /dev/da2
145 or:
146 gstripe label -v -s 65536 data /dev/da0 /dev/da1 /dev/da2
147 .Ed
148 .Pp
149 Print the list of all providers from the DISK class:
150 .Bd -literal -offset indent
151 geom disk list
152 .Ed
153 .Pp
154 Unload a kernel module which implements the MD class:
155 .Bd -literal -offset indent
156 geom md unload
157 .Ed
158 .Sh SEE ALSO
159 .Xr geom 4 ,
160 .Xr gconcat 8 ,
161 .Xr geli 8 ,
162 .Xr glabel 8 ,
163 .Xr gmirror 8 ,
164 .Xr gnop 8 ,
165 .Xr graid3 8 ,
166 .Xr gshsec 8 ,
167 .Xr gstripe 8 ,
168 .Xr gvirstor 8
169 .Sh HISTORY
170 The
171 .Nm
172 utility appeared in
173 .Fx 5.3 .
174 .Sh AUTHORS
175 .An Pawel Jakub Dawidek Aq pjd@FreeBSD.org