VirtualBox

source: vbox/trunk/doc/manual/en_US/user_VBoxManage.xml@ 98110

Last change on this file since 98110 was 98108, checked in by vboxsync, 23 months ago

Manual (C) year updates.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 23.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 user_VBoxManage.xml:
4 VBoxManage documentation for the user manual.
5
6 This XML document is also be used for generating the help text
7 built into VBoxManage as well as manpages (hacking in progress).
8-->
9<!--
10 Copyright (C) 2006-2023 Oracle and/or its affiliates.
11
12 This file is part of VirtualBox base platform packages, as
13 available from https://www.virtualbox.org.
14
15 This program is free software; you can redistribute it and/or
16 modify it under the terms of the GNU General Public License
17 as published by the Free Software Foundation, in version 3 of the
18 License.
19
20 This program is distributed in the hope that it will be useful, but
21 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, see <https://www.gnu.org/licenses>.
27
28 SPDX-License-Identifier: GPL-3.0-only
29-->
30<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
31 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"[
32<!ENTITY % all.entities SYSTEM "all-entities.ent">
33%all.entities;
34]>
35<chapter id="vboxmanage">
36
37 <title>VBoxManage</title>
38
39 <sect1 id="vboxmanage-intro">
40
41 <title>Introduction</title>
42
43 <para>
44 As briefly mentioned in <xref linkend="frontends" />,
45 <command>VBoxManage</command> is the command-line interface to
46 &product-name;. With it, you can completely control &product-name;
47 from the command line of your host operating system.
48 <command>VBoxManage</command> supports all the features that the
49 graphical user interface gives you access to, but it supports a
50 lot more than that. It exposes all the features of the
51 virtualization engine, even those that cannot be accessed from the
52 GUI.
53 </para>
54
55 <para>
56 You will need to use the command line if you want to do the
57 following:
58 </para>
59
60 <itemizedlist>
61
62 <listitem>
63 <para>
64 Use a different user interface than the main GUI such as the
65 VBoxHeadless server.
66 </para>
67 </listitem>
68
69 <listitem>
70 <para>
71 Control some of the more advanced and experimental
72 configuration settings for a VM.
73 </para>
74 </listitem>
75
76 </itemizedlist>
77
78 <para>
79 There are two main things to keep in mind when using
80 <command>VBoxManage</command>. First,
81 <command>VBoxManage</command> must always be used with a specific
82 subcommand, such as <command>list</command> or
83 <command>createvm</command> or <command>startvm</command>. All the
84 subcommands that <command>VBoxManage</command> supports are
85 described in detail in <xref linkend="vboxmanage" />.
86 </para>
87
88 <para>
89 Second, most of these subcommands require that you specify a
90 particular virtual machine after the subcommand. There are two
91 ways you can do this:
92 </para>
93
94 <itemizedlist>
95
96 <listitem>
97 <para>
98 You can specify the VM name, as it is shown in the
99 &product-name; GUI. Note that if that name contains spaces,
100 then you must enclose the entire name in double quotes. This
101 is always required with command line arguments that contain
102 spaces. For example:
103 </para>
104
105<screen>VBoxManage startvm "Windows XP"</screen>
106 </listitem>
107
108 <listitem>
109 <para>
110 You can specify the UUID, which is the internal unique
111 identifier that &product-name; uses to refer to the virtual
112 machine. Assuming that the VM called "Windows XP" has the UUID
113 shown below, the following command has the same effect as the
114 previous example:
115 </para>
116
117<screen>VBoxManage startvm 670e746d-abea-4ba6-ad02-2a3b043810a5</screen>
118 </listitem>
119
120 </itemizedlist>
121
122 <para>
123 You can enter <command>VBoxManage list vms</command> to have all
124 currently registered VMs listed with all their settings, including
125 their respective names and UUIDs.
126 </para>
127
128 <para>
129 Some typical examples of how to control &product-name; from the
130 command line are listed below:
131 </para>
132
133 <itemizedlist>
134
135 <listitem>
136 <para>
137 To create a new virtual machine from the command line and
138 immediately register it with &product-name;, use
139 <command>VBoxManage createvm</command> with the
140 <option>--register</option> option, as follows:
141 </para>
142
143<screen>$ VBoxManage createvm --name "SUSE 10.2" --register
144VirtualBox Command Line Management Interface Version <replaceable>version-number</replaceable>
145Copyright (C) 2005-2023 Oracle and/or its affiliates
146
147Virtual machine 'SUSE 10.2' is created.
148UUID: c89fc351-8ec6-4f02-a048-57f4d25288e5
149Settings file: '/home/username/.config/VirtualBox/Machines/SUSE 10.2/SUSE 10.2.xml'</screen>
150
151 <para>
152 As can be seen from the above output, a new virtual machine
153 has been created with a new UUID and a new XML settings file.
154 </para>
155
156 <para>
157 For more details, see
158 <xref
159 linkend="vboxmanage-createvm" />.
160 </para>
161 </listitem>
162
163 <listitem>
164 <para>
165 To show the configuration of a particular VM, use
166 <command>VBoxManage showvminfo</command>. See
167 <xref
168 linkend="vboxmanage-showvminfo" /> for details
169 and an example.
170 </para>
171 </listitem>
172
173 <listitem>
174 <para>
175 To change settings while a VM is powered off, use
176 <command>VBoxManage modifyvm</command>. For example:
177 </para>
178
179<screen>VBoxManage modifyvm "Windows XP" --memory 512</screen>
180
181 <para>
182 See also <xref linkend="vboxmanage-modifyvm" />.
183 </para>
184 </listitem>
185
186 <listitem>
187 <para>
188 To change the storage configuration, such as to add a storage
189 controller and then a virtual disk, use <command>VBoxManage
190 storagectl</command> and <command>VBoxManage
191 storageattach</command>. See
192 <xref
193 linkend="vboxmanage-storagectl" /> and
194 <xref
195 linkend="vboxmanage-storageattach" />.
196 </para>
197 </listitem>
198
199 <listitem>
200 <para>
201 To control VM operation, use one of the following:
202 </para>
203
204 <itemizedlist>
205
206 <listitem>
207 <para>
208 To start a VM that is currently powered off, use
209 <command>VBoxManage startvm</command>. See
210 <xref
211 linkend="vboxmanage-startvm" />.
212 </para>
213 </listitem>
214
215 <listitem>
216 <para>
217 To pause or save a VM that is currently running or change
218 some of its settings, use <command>VBoxManage
219 controlvm</command>. See
220 <xref
221 linkend="vboxmanage-controlvm" />.
222 </para>
223 </listitem>
224
225 </itemizedlist>
226 </listitem>
227
228 </itemizedlist>
229
230 </sect1>
231
232 <sect1 id="vboxmanage-cmd-overview">
233
234 <title>Commands Overview</title>
235
236 <para>
237 When running <command>VBoxManage</command> without parameters or
238 when supplying an invalid command line, the following command
239 syntax list is shown. Note that the output will be slightly
240 different depending on the host platform. If in doubt, check the
241 output of <command>VBoxManage</command> for the commands available
242 on your particular host.
243 </para>
244
245 <xi:include href="overview_man_VBoxManage-common.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
246
247 <xi:include href="overview_man_VBoxManage-list.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
248
249 <xi:include href="overview_man_VBoxManage-showvminfo.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
250
251 <xi:include href="overview_man_VBoxManage-registervm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
252
253 <xi:include href="overview_man_VBoxManage-unregistervm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
254
255 <xi:include href="overview_man_VBoxManage-createvm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
256
257 <xi:include href="overview_man_VBoxManage-modifyvm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
258
259 <xi:include href="overview_man_VBoxManage-clonevm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
260
261 <xi:include href="overview_man_VBoxManage-movevm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
262
263 <xi:include href="overview_man_VBoxManage-encryptvm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
264
265 <xi:include href="overview_man_VBoxManage-cloud.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
266
267 <xi:include href="overview_man_VBoxManage-cloudprofile.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
268
269 <xi:include href="overview_man_VBoxManage-import.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
270
271 <xi:include href="overview_man_VBoxManage-export.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
272
273 <xi:include href="overview_man_VBoxManage-signova.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
274
275 <xi:include href="overview_man_VBoxManage-startvm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
276
277 <xi:include href="overview_man_VBoxManage-controlvm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
278
279 <xi:include href="overview_man_VBoxManage-unattended.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
280
281 <xi:include href="overview_man_VBoxManage-discardstate.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
282
283 <xi:include href="overview_man_VBoxManage-adoptstate.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
284
285 <xi:include href="overview_man_VBoxManage-snapshot.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
286
287 <xi:include href="overview_man_VBoxManage-closemedium.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
288
289 <xi:include href="overview_man_VBoxManage-storageattach.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
290
291 <xi:include href="overview_man_VBoxManage-storagectl.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
292
293 <xi:include href="overview_man_VBoxManage-bandwidthctl.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
294
295 <xi:include href="overview_man_VBoxManage-showmediuminfo.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
296
297 <xi:include href="overview_man_VBoxManage-createmedium.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
298
299 <xi:include href="overview_man_VBoxManage-modifymedium.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
300
301 <xi:include href="overview_man_VBoxManage-clonemedium.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
302
303 <xi:include href="overview_man_VBoxManage-mediumproperty.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
304
305 <xi:include href="overview_man_VBoxManage-encryptmedium.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
306
307 <xi:include href="overview_man_VBoxManage-checkmediumpwd.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
308
309 <xi:include href="overview_man_VBoxManage-convertfromraw.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
310
311 <xi:include href="overview_man_VBoxManage-mediumio.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
312
313 <xi:include href="overview_man_VBoxManage-setextradata.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
314
315 <xi:include href="overview_man_VBoxManage-getextradata.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
316
317 <xi:include href="overview_man_VBoxManage-setproperty.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
318
319 <xi:include href="overview_man_VBoxManage-usbfilter.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
320
321 <xi:include href="overview_man_VBoxManage-sharedfolder.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
322
323 <xi:include href="overview_man_VBoxManage-guestproperty.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
324
325 <xi:include href="overview_man_VBoxManage-guestcontrol.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
326
327 <xi:include href="overview_man_VBoxManage-debugvm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
328
329 <xi:include href="overview_man_VBoxManage-metrics.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
330
331 <xi:include href="overview_man_VBoxManage-natnetwork.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
332
333 <xi:include href="overview_man_VBoxManage-hostonlyif.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
334
335 <xi:include href="overview_man_VBoxManage-hostonlynet.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
336
337 <xi:include href="overview_man_VBoxManage-dhcpserver.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
338
339 <xi:include href="overview_man_VBoxManage-usbdevsource.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
340
341 <xi:include href="overview_man_VBoxManage-extpack.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
342
343 <xi:include href="overview_man_VBoxManage-updatecheck.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
344
345 <xi:include href="overview_man_VBoxManage-modifynvram.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
346
347 <para>
348 Each time <command>VBoxManage</command> is invoked, only one
349 command can be executed. However, a command might support several
350 subcommands which then can be invoked in one single call. The
351 following sections provide detailed reference information on the
352 different commands.
353 </para>
354
355 </sect1>
356
357 <!-- TODO: Figure out how we can generate a file with the includes... The trouble is
358 that xpointer doesn't seem to allow including multiple elements.
359
360 In the mean time, when adding new VBoxManage man pages to Config.kmk,
361 don't forget to add it here too.
362 -->
363
364 <sect1 id="vboxmanage-general">
365
366 <title>General Options</title>
367
368 <itemizedlist>
369
370 <listitem>
371 <para>
372 <option>-v|--version</option>: Show the version of this tool
373 and exit.
374 </para>
375 </listitem>
376
377 <listitem>
378 <para>
379 <option>--nologo</option>: Suppress the output of the logo
380 information. This option is useful for scripts.
381 </para>
382 </listitem>
383
384 <listitem>
385 <para>
386 <option>--settingspw</option>: Specifiy a settings password.
387 </para>
388 </listitem>
389
390 <listitem>
391 <para>
392 <option>--settingspwfile</option>: Specify a file containing
393 the settings password.
394 </para>
395 </listitem>
396
397 </itemizedlist>
398
399 <para>
400 The settings password is used for certain settings which need to
401 be stored in encrypted form for security reasons. At the moment,
402 the only encrypted setting is the iSCSI initiator secret, see
403 <xref linkend="vboxmanage-storageattach" />. As long as no
404 settings password is specified, this information is stored in
405 <emphasis>plain text</emphasis>. After using the
406 <option>--settingspw|--settingspwfile</option> option once, it
407 must be always used. Otherwise, the encrypted setting cannot be
408 unencrypted.
409 </para>
410
411 </sect1>
412
413 <!-- TODO: Check the overview/common man page -->
414 <xi:include href="user_man_VBoxManage-common.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
415
416 <xi:include href="user_man_VBoxManage-list.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
417
418 <xi:include href="user_man_VBoxManage-showvminfo.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
419
420 <xi:include href="user_man_VBoxManage-registervm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
421
422 <xi:include href="user_man_VBoxManage-unregistervm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
423
424 <xi:include href="user_man_VBoxManage-createvm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
425
426 <xi:include href="user_man_VBoxManage-modifyvm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
427
428 <xi:include href="user_man_VBoxManage-clonevm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
429
430 <xi:include href="user_man_VBoxManage-movevm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
431
432 <xi:include href="user_man_VBoxManage-encryptvm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
433
434 <xi:include href="user_man_VBoxManage-cloud.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
435
436 <xi:include href="user_man_VBoxManage-cloudprofile.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
437
438 <xi:include href="user_man_VBoxManage-import.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
439
440 <xi:include href="user_man_VBoxManage-export.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
441
442 <xi:include href="user_man_VBoxManage-signova.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
443
444 <xi:include href="user_man_VBoxManage-startvm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
445
446 <xi:include href="user_man_VBoxManage-controlvm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
447
448 <xi:include href="user_man_VBoxManage-unattended.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
449
450 <xi:include href="user_man_VBoxManage-discardstate.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
451
452 <xi:include href="user_man_VBoxManage-adoptstate.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
453
454 <xi:include href="user_man_VBoxManage-snapshot.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
455
456 <xi:include href="user_man_VBoxManage-closemedium.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
457
458 <xi:include href="user_man_VBoxManage-storageattach.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
459
460 <xi:include href="user_man_VBoxManage-storagectl.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
461
462 <xi:include href="user_man_VBoxManage-bandwidthctl.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
463
464 <xi:include href="user_man_VBoxManage-showmediuminfo.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
465
466 <xi:include href="user_man_VBoxManage-createmedium.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
467
468 <xi:include href="user_man_VBoxManage-modifymedium.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
469
470 <xi:include href="user_man_VBoxManage-clonemedium.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
471
472 <xi:include href="user_man_VBoxManage-mediumproperty.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
473
474 <xi:include href="user_man_VBoxManage-encryptmedium.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
475
476 <xi:include href="user_man_VBoxManage-checkmediumpwd.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
477
478 <xi:include href="user_man_VBoxManage-convertfromraw.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
479
480 <xi:include href="user_man_VBoxManage-mediumio.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
481
482 <xi:include href="user_man_VBoxManage-setextradata.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
483
484 <xi:include href="user_man_VBoxManage-getextradata.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
485
486 <xi:include href="user_man_VBoxManage-setproperty.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
487
488 <xi:include href="user_man_VBoxManage-usbfilter.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
489
490 <xi:include href="user_man_VBoxManage-sharedfolder.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
491
492 <xi:include href="user_man_VBoxManage-guestproperty.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
493
494 <xi:include href="user_man_VBoxManage-guestcontrol.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
495
496 <xi:include href="user_man_VBoxManage-debugvm.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
497
498 <xi:include href="user_man_VBoxManage-metrics.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
499
500 <xi:include href="user_man_VBoxManage-natnetwork.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
501
502 <xi:include href="user_man_VBoxManage-hostonlyif.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
503
504 <xi:include href="user_man_VBoxManage-hostonlynet.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
505
506 <xi:include href="user_man_VBoxManage-dhcpserver.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
507
508 <xi:include href="user_man_VBoxManage-usbdevsource.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
509
510 <xi:include href="user_man_VBoxManage-extpack.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
511
512 <xi:include href="user_man_VBoxManage-updatecheck.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
513
514 <xi:include href="user_man_VBoxManage-modifynvram.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
515
516 <!-- TODO: Figure out how we can handle other manpages. The xml is bolted to
517 sect1, so it's not possible to have them "in place" -->
518
519 <xi:include href="user_man_vboximg-mount.xml" xpointer="element(/1)" xmlns:xi="http://www.w3.org/2001/XInclude" />
520
521</chapter>
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette