VirtualBox

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

Last change on this file since 96300 was 96300, checked in by vboxsync, 2 years ago

doc: comment fixing

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