]> git.ipfire.org Git - thirdparty/systemd.git/blob - man/systemd-detect-virt.xml
Add SPDX license identifiers to man pages
[thirdparty/systemd.git] / man / systemd-detect-virt.xml
1 <?xml version='1.0'?> <!--*-nxml-*-->
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5 <!--
6 SPDX-License-Identifier: LGPL-2.1+
7
8 This file is part of systemd.
9
10 Copyright 2010 Lennart Poettering
11
12 systemd is free software; you can redistribute it and/or modify it
13 under the terms of the GNU Lesser General Public License as published by
14 the Free Software Foundation; either version 2.1 of the License, or
15 (at your option) any later version.
16
17 systemd is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 Lesser General Public License for more details.
21
22 You should have received a copy of the GNU Lesser General Public License
23 along with systemd; If not, see <http://www.gnu.org/licenses/>.
24 -->
25
26 <refentry id="systemd-detect-virt"
27 xmlns:xi="http://www.w3.org/2001/XInclude">
28
29 <refentryinfo>
30 <title>systemd-detect-virt</title>
31 <productname>systemd</productname>
32
33 <authorgroup>
34 <author>
35 <contrib>Developer</contrib>
36 <firstname>Lennart</firstname>
37 <surname>Poettering</surname>
38 <email>lennart@poettering.net</email>
39 </author>
40 </authorgroup>
41 </refentryinfo>
42
43 <refmeta>
44 <refentrytitle>systemd-detect-virt</refentrytitle>
45 <manvolnum>1</manvolnum>
46 </refmeta>
47
48 <refnamediv>
49 <refname>systemd-detect-virt</refname>
50 <refpurpose>Detect execution in a virtualized environment</refpurpose>
51 </refnamediv>
52
53 <refsynopsisdiv>
54 <cmdsynopsis>
55 <command>systemd-detect-virt</command>
56 <arg choice="opt" rep="repeat">OPTIONS</arg>
57 </cmdsynopsis>
58 </refsynopsisdiv>
59
60 <refsect1>
61 <title>Description</title>
62
63 <para><command>systemd-detect-virt</command> detects execution in
64 a virtualized environment. It identifies the virtualization
65 technology and can distinguish full machine virtualization from
66 container virtualization. <filename>systemd-detect-virt</filename>
67 exits with a return value of 0 (success) if a virtualization
68 technology is detected, and non-zero (error) otherwise. By default,
69 any type of virtualization is detected, and the options
70 <option>--container</option> and <option>--vm</option> can be used
71 to limit what types of virtualization are detected.</para>
72
73 <para>When executed without <option>--quiet</option> will print a
74 short identifier for the detected virtualization technology. The
75 following technologies are currently identified:</para>
76
77 <table>
78 <title>Known virtualization technologies (both
79 VM, i.e. full hardware virtualization,
80 and container, i.e. shared kernel virtualization)</title>
81 <tgroup cols='3' align='left' colsep='1' rowsep='1'>
82 <colspec colname="type" />
83 <colspec colname="id" />
84 <colspec colname="product" />
85 <thead>
86 <row>
87 <entry>Type</entry>
88 <entry>ID</entry>
89 <entry>Product</entry>
90 </row>
91 </thead>
92 <tbody>
93 <row>
94 <entry valign="top" morerows="10">VM</entry>
95 <entry><varname>qemu</varname></entry>
96 <entry>QEMU software virtualization, without KVM</entry>
97 </row>
98
99 <row>
100 <entry><varname>kvm</varname></entry>
101 <entry>Linux KVM kernel virtual machine, with whatever software, except
102 Oracle Virtualbox</entry>
103 </row>
104
105 <row>
106 <entry><varname>zvm</varname></entry>
107 <entry>s390 z/VM</entry>
108 </row>
109
110 <row>
111 <entry><varname>vmware</varname></entry>
112 <entry>VMware Workstation or Server, and related products</entry>
113 </row>
114
115 <row>
116 <entry><varname>microsoft</varname></entry>
117 <entry>Hyper-V, also known as Viridian or Windows Server Virtualization</entry>
118 </row>
119
120 <row>
121 <entry><varname>oracle</varname></entry>
122 <entry>Oracle VM VirtualBox (historically marketed by innotek and Sun Microsystems),
123 for legacy and KVM hypervisor</entry>
124 </row>
125
126 <row>
127 <entry><varname>xen</varname></entry>
128 <entry>Xen hypervisor (only domU, not dom0)</entry>
129 </row>
130
131 <row>
132 <entry><varname>bochs</varname></entry>
133 <entry>Bochs Emulator</entry>
134 </row>
135
136 <row>
137 <entry><varname>uml</varname></entry>
138 <entry>User-mode Linux</entry>
139 </row>
140
141 <row>
142 <entry><varname>parallels</varname></entry>
143 <entry>Parallels Desktop, Parallels Server</entry>
144 </row>
145
146 <row>
147 <entry><varname>bhyve</varname></entry>
148 <entry>bhyve, FreeBSD hypervisor</entry>
149 </row>
150
151 <row>
152 <entry valign="top" morerows="5">Container</entry>
153 <entry><varname>openvz</varname></entry>
154 <entry>OpenVZ/Virtuozzo</entry>
155 </row>
156
157 <row>
158 <entry><varname>lxc</varname></entry>
159 <entry>Linux container implementation by LXC</entry>
160 </row>
161
162 <row>
163 <entry><varname>lxc-libvirt</varname></entry>
164 <entry>Linux container implementation by libvirt</entry>
165 </row>
166
167 <row>
168 <entry><varname>systemd-nspawn</varname></entry>
169 <entry>systemd's minimal container implementation, see <citerefentry><refentrytitle>systemd-nspawn</refentrytitle><manvolnum>1</manvolnum></citerefentry></entry>
170 </row>
171
172 <row>
173 <entry><varname>docker</varname></entry>
174 <entry>Docker container manager</entry>
175 </row>
176
177 <row>
178 <entry><varname>rkt</varname></entry>
179 <entry>rkt app container runtime</entry>
180 </row>
181 </tbody>
182 </tgroup>
183 </table>
184
185 <para>If multiple virtualization solutions are used, only the
186 "innermost" is detected and identified. That means if both
187 machine and container virtualization are used in
188 conjunction, only the latter will be identified (unless
189 <option>--vm</option> is passed).</para>
190 </refsect1>
191
192 <refsect1>
193 <title>Options</title>
194
195 <para>The following options are understood:</para>
196
197 <variablelist>
198 <varlistentry>
199 <term><option>-c</option></term>
200 <term><option>--container</option></term>
201
202 <listitem><para>Only detects container virtualization (i.e.
203 shared kernel virtualization).</para></listitem>
204 </varlistentry>
205
206 <varlistentry>
207 <term><option>-v</option></term>
208 <term><option>--vm</option></term>
209
210 <listitem><para>Only detects hardware virtualization).</para></listitem>
211 </varlistentry>
212
213 <varlistentry>
214 <term><option>-r</option></term>
215 <term><option>--chroot</option></term>
216
217 <listitem><para>Detect whether invoked in a
218 <citerefentry><refentrytitle>chroot</refentrytitle><manvolnum>2</manvolnum></citerefentry>
219 environment. In this mode, no output is written, but the return
220 value indicates whether the process was invoked in a
221 <function>chroot()</function>
222 environment or not.</para></listitem>
223 </varlistentry>
224
225 <varlistentry>
226 <term><option>--private-users</option></term>
227
228 <listitem><para>Detect whether invoked in a user namespace. In this mode, no
229 output is written, but the return value indicates whether the process was invoked
230 inside of a user namespace or not. See
231 <citerefentry project='man-pages'><refentrytitle>user_namespaces</refentrytitle><manvolnum>7</manvolnum></citerefentry>
232 for more information.</para></listitem>
233 </varlistentry>
234
235 <varlistentry>
236 <term><option>-q</option></term>
237 <term><option>--quiet</option></term>
238
239 <listitem><para>Suppress output of the virtualization
240 technology identifier.</para></listitem>
241 </varlistentry>
242
243 <xi:include href="standard-options.xml" xpointer="help" />
244 <xi:include href="standard-options.xml" xpointer="version" />
245 </variablelist>
246
247 </refsect1>
248
249 <refsect1>
250 <title>Exit status</title>
251
252 <para>If a virtualization technology is detected, 0 is returned, a
253 non-zero code otherwise.</para>
254 </refsect1>
255
256 <refsect1>
257 <title>See Also</title>
258 <para>
259 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
260 <citerefentry><refentrytitle>systemd-nspawn</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
261 <citerefentry><refentrytitle>chroot</refentrytitle><manvolnum>2</manvolnum></citerefentry>,
262 <citerefentry project='man-pages'><refentrytitle>namespaces</refentrytitle><manvolnum>7</manvolnum></citerefentry>
263 </para>
264 </refsect1>
265
266 </refentry>