1 | /* $Id: VBoxManageHelp.cpp 40984 2012-04-19 07:42:43Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxManage - help and other message output.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2012 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 |
|
---|
19 | /*******************************************************************************
|
---|
20 | * Header Files *
|
---|
21 | *******************************************************************************/
|
---|
22 | #include <VBox/version.h>
|
---|
23 |
|
---|
24 | #include <iprt/buildconfig.h>
|
---|
25 | #include <iprt/ctype.h>
|
---|
26 | #include <iprt/err.h>
|
---|
27 | #include <iprt/getopt.h>
|
---|
28 | #include <iprt/stream.h>
|
---|
29 |
|
---|
30 | #include "VBoxManage.h"
|
---|
31 |
|
---|
32 |
|
---|
33 |
|
---|
34 | void showLogo(PRTSTREAM pStrm)
|
---|
35 | {
|
---|
36 | static bool s_fShown; /* show only once */
|
---|
37 |
|
---|
38 | if (!s_fShown)
|
---|
39 | {
|
---|
40 | RTStrmPrintf(pStrm, VBOX_PRODUCT " Command Line Management Interface Version "
|
---|
41 | VBOX_VERSION_STRING "\n"
|
---|
42 | "(C) 2005-" VBOX_C_YEAR " " VBOX_VENDOR "\n"
|
---|
43 | "All rights reserved.\n"
|
---|
44 | "\n");
|
---|
45 | s_fShown = true;
|
---|
46 | }
|
---|
47 | }
|
---|
48 |
|
---|
49 | void printUsage(USAGECATEGORY u64Cmd, PRTSTREAM pStrm)
|
---|
50 | {
|
---|
51 | bool fDumpOpts = false;
|
---|
52 | #ifdef RT_OS_LINUX
|
---|
53 | bool fLinux = true;
|
---|
54 | #else
|
---|
55 | bool fLinux = false;
|
---|
56 | #endif
|
---|
57 | #ifdef RT_OS_WINDOWS
|
---|
58 | bool fWin = true;
|
---|
59 | #else
|
---|
60 | bool fWin = false;
|
---|
61 | #endif
|
---|
62 | #ifdef RT_OS_SOLARIS
|
---|
63 | bool fSolaris = true;
|
---|
64 | #else
|
---|
65 | bool fSolaris = false;
|
---|
66 | #endif
|
---|
67 | #ifdef RT_OS_FREEBSD
|
---|
68 | bool fFreeBSD = true;
|
---|
69 | #else
|
---|
70 | bool fFreeBSD = false;
|
---|
71 | #endif
|
---|
72 | #ifdef RT_OS_DARWIN
|
---|
73 | bool fDarwin = true;
|
---|
74 | #else
|
---|
75 | bool fDarwin = false;
|
---|
76 | #endif
|
---|
77 | #ifdef VBOX_WITH_VBOXSDL
|
---|
78 | bool fVBoxSDL = true;
|
---|
79 | #else
|
---|
80 | bool fVBoxSDL = false;
|
---|
81 | #endif
|
---|
82 |
|
---|
83 | if (u64Cmd == USAGE_DUMPOPTS)
|
---|
84 | {
|
---|
85 | fDumpOpts = true;
|
---|
86 | fLinux = true;
|
---|
87 | fWin = true;
|
---|
88 | fSolaris = true;
|
---|
89 | fFreeBSD = true;
|
---|
90 | fDarwin = true;
|
---|
91 | fVBoxSDL = true;
|
---|
92 | u64Cmd = USAGE_ALL;
|
---|
93 | }
|
---|
94 |
|
---|
95 | RTStrmPrintf(pStrm,
|
---|
96 | "Usage:\n"
|
---|
97 | "\n");
|
---|
98 |
|
---|
99 | if (u64Cmd == USAGE_ALL)
|
---|
100 | RTStrmPrintf(pStrm,
|
---|
101 | "VBoxManage [-v|--version] print version number and exit\n"
|
---|
102 | "VBoxManage [-q|--nologo] ... suppress the logo\n"
|
---|
103 | "\n");
|
---|
104 |
|
---|
105 | if (u64Cmd & USAGE_LIST)
|
---|
106 | RTStrmPrintf(pStrm,
|
---|
107 | "VBoxManage list [--long|-l] vms|runningvms|ostypes|hostdvds|hostfloppies|\n"
|
---|
108 | #if defined(VBOX_WITH_NETFLT)
|
---|
109 | " bridgedifs|hostonlyifs|dhcpservers|hostinfo|\n"
|
---|
110 | #else
|
---|
111 | " bridgedifs|dhcpservers|hostinfo|\n"
|
---|
112 | #endif
|
---|
113 | " hostcpuids|hddbackends|hdds|dvds|floppies|\n"
|
---|
114 | " usbhost|usbfilters|systemproperties|extpacks\n"
|
---|
115 | "\n");
|
---|
116 |
|
---|
117 | if (u64Cmd & USAGE_SHOWVMINFO)
|
---|
118 | RTStrmPrintf(pStrm,
|
---|
119 | "VBoxManage showvminfo <uuid>|<name> [--details]\n"
|
---|
120 | " [--machinereadable]\n"
|
---|
121 | "VBoxManage showvminfo <uuid>|<name> --log <idx>\n"
|
---|
122 | "\n");
|
---|
123 |
|
---|
124 | if (u64Cmd & USAGE_REGISTERVM)
|
---|
125 | RTStrmPrintf(pStrm,
|
---|
126 | "VBoxManage registervm <filename>\n"
|
---|
127 | "\n");
|
---|
128 |
|
---|
129 | if (u64Cmd & USAGE_UNREGISTERVM)
|
---|
130 | RTStrmPrintf(pStrm,
|
---|
131 | "VBoxManage unregistervm <uuid>|<name> [--delete]\n"
|
---|
132 | "\n");
|
---|
133 |
|
---|
134 | if (u64Cmd & USAGE_CREATEVM)
|
---|
135 | RTStrmPrintf(pStrm,
|
---|
136 | "VBoxManage createvm --name <name>\n"
|
---|
137 | " [--ostype <ostype>]\n"
|
---|
138 | " [--register]\n"
|
---|
139 | " [--basefolder <path>]\n"
|
---|
140 | " [--uuid <uuid>]\n"
|
---|
141 | "\n");
|
---|
142 |
|
---|
143 | if (u64Cmd & USAGE_MODIFYVM)
|
---|
144 | {
|
---|
145 | RTStrmPrintf(pStrm,
|
---|
146 | "VBoxManage modifyvm <uuid|name>\n"
|
---|
147 | " [--name <name>]\n"
|
---|
148 | " [--ostype <ostype>]\n"
|
---|
149 | " [--memory <memorysize in MB>]\n"
|
---|
150 | " [--pagefusion on|off]\n"
|
---|
151 | " [--vram <vramsize in MB>]\n"
|
---|
152 | " [--acpi on|off]\n"
|
---|
153 | #ifdef VBOX_WITH_PCI_PASSTHROUGH
|
---|
154 | " [--pciattach 03:04.0]\n"
|
---|
155 | " [--pciattach 03:04.0@02:01.0]\n"
|
---|
156 | " [--pcidetach 03:04.0]\n"
|
---|
157 | #endif
|
---|
158 | " [--ioapic on|off]\n"
|
---|
159 | " [--pae on|off]\n"
|
---|
160 | " [--hpet on|off]\n"
|
---|
161 | " [--hwvirtex on|off]\n"
|
---|
162 | " [--hwvirtexexcl on|off]\n"
|
---|
163 | " [--nestedpaging on|off]\n"
|
---|
164 | " [--largepages on|off]\n"
|
---|
165 | " [--vtxvpid on|off]\n"
|
---|
166 | " [--synthcpu on|off]\n"
|
---|
167 | " [--cpuidset <leaf> <eax> <ebx> <ecx> <edx>]\n"
|
---|
168 | " [--cpuidremove <leaf>]\n"
|
---|
169 | " [--cpuidremoveall]\n"
|
---|
170 | " [--hardwareuuid <uuid>]\n"
|
---|
171 | " [--cpus <number>]\n"
|
---|
172 | " [--cpuhotplug on|off]\n"
|
---|
173 | " [--plugcpu <id>]\n"
|
---|
174 | " [--unplugcpu <id>]\n"
|
---|
175 | " [--cpuexecutioncap <1-100>]\n"
|
---|
176 | " [--rtcuseutc on|off]\n"
|
---|
177 | " [--monitorcount <number>]\n"
|
---|
178 | " [--accelerate3d on|off]\n"
|
---|
179 | #ifdef VBOX_WITH_VIDEOHWACCEL
|
---|
180 | " [--accelerate2dvideo on|off]\n"
|
---|
181 | #endif
|
---|
182 | " [--firmware bios|efi|efi32|efi64]\n"
|
---|
183 | " [--chipset ich9|piix3]\n"
|
---|
184 | " [--bioslogofadein on|off]\n"
|
---|
185 | " [--bioslogofadeout on|off]\n"
|
---|
186 | " [--bioslogodisplaytime <msec>]\n"
|
---|
187 | " [--bioslogoimagepath <imagepath>]\n"
|
---|
188 | " [--biosbootmenu disabled|menuonly|messageandmenu]\n"
|
---|
189 | " [--biossystemtimeoffset <msec>]\n"
|
---|
190 | " [--biospxedebug on|off]\n"
|
---|
191 | " [--boot<1-4> none|floppy|dvd|disk|net>]\n"
|
---|
192 | " [--nic<1-N> none|null|nat|bridged|intnet"
|
---|
193 | #if defined(VBOX_WITH_NETFLT)
|
---|
194 | "|hostonly"
|
---|
195 | #endif
|
---|
196 | "|\n"
|
---|
197 | " generic"
|
---|
198 | "]\n"
|
---|
199 | " [--nictype<1-N> Am79C970A|Am79C973"
|
---|
200 | #ifdef VBOX_WITH_E1000
|
---|
201 | "|\n 82540EM|82543GC|82545EM"
|
---|
202 | #endif
|
---|
203 | #ifdef VBOX_WITH_VIRTIO
|
---|
204 | "|\n virtio"
|
---|
205 | #endif /* VBOX_WITH_VIRTIO */
|
---|
206 | "]\n"
|
---|
207 | " [--cableconnected<1-N> on|off]\n"
|
---|
208 | " [--nictrace<1-N> on|off]\n"
|
---|
209 | " [--nictracefile<1-N> <filename>]\n"
|
---|
210 | " [--nicproperty<1-N> name=[value]]\n"
|
---|
211 | " [--nicspeed<1-N> <kbps>]\n"
|
---|
212 | " [--nicbootprio<1-N> <priority>]\n"
|
---|
213 | " [--nicpromisc<1-N> deny|allow-vms|allow-all]\n"
|
---|
214 | " [--nicbandwidthgroup<1-N> none|<name>]\n"
|
---|
215 | " [--bridgeadapter<1-N> none|<devicename>]\n"
|
---|
216 | #if defined(VBOX_WITH_NETFLT)
|
---|
217 | " [--hostonlyadapter<1-N> none|<devicename>]\n"
|
---|
218 | #endif
|
---|
219 | " [--intnet<1-N> <network name>]\n"
|
---|
220 | " [--natnet<1-N> <network>|default]\n"
|
---|
221 | " [--nicgenericdrv<1-N> <driver>\n"
|
---|
222 | " [--natsettings<1-N> [<mtu>],[<socksnd>],\n"
|
---|
223 | " [<sockrcv>],[<tcpsnd>],\n"
|
---|
224 | " [<tcprcv>]]\n"
|
---|
225 | " [--natpf<1-N> [<rulename>],tcp|udp,[<hostip>],\n"
|
---|
226 | " <hostport>,[<guestip>],<guestport>]\n"
|
---|
227 | " [--natpf<1-N> delete <rulename>]\n"
|
---|
228 | " [--nattftpprefix<1-N> <prefix>]\n"
|
---|
229 | " [--nattftpfile<1-N> <file>]\n"
|
---|
230 | " [--nattftpserver<1-N> <ip>]\n"
|
---|
231 | " [--natbindip<1-N> <ip>\n"
|
---|
232 | " [--natdnspassdomain<1-N> on|off]\n"
|
---|
233 | " [--natdnsproxy<1-N> on|off]\n"
|
---|
234 | " [--natdnshostresolver<1-N> on|off]\n"
|
---|
235 | " [--nataliasmode<1-N> default|[log],[proxyonly],\n"
|
---|
236 | " [sameports]]\n"
|
---|
237 | " [--macaddress<1-N> auto|<mac>]\n"
|
---|
238 | " [--mouse ps2|usb|usbtablet\n"
|
---|
239 | " [--keyboard ps2|usb\n"
|
---|
240 | " [--uart<1-N> off|<I/O base> <IRQ>]\n"
|
---|
241 | " [--uartmode<1-N> disconnected|\n"
|
---|
242 | " server <pipe>|\n"
|
---|
243 | " client <pipe>|\n"
|
---|
244 | " file <file>|\n"
|
---|
245 | " <devicename>]\n"
|
---|
246 | #if defined(RT_OS_LINUX) || defined(RT_OS_WINDOWS)
|
---|
247 | " [--lpt<1-N> off|<I/O base> <IRQ>]\n"
|
---|
248 | " [--lptmode<1-N> <devicename>]\n"
|
---|
249 | #endif
|
---|
250 | " [--guestmemoryballoon <balloonsize in MB>]\n"
|
---|
251 | " [--gueststatisticsinterval <seconds>]\n"
|
---|
252 | " [--audio none|null");
|
---|
253 | if (fWin)
|
---|
254 | {
|
---|
255 | #ifdef VBOX_WITH_WINMM
|
---|
256 | RTStrmPrintf(pStrm, "|winmm|dsound");
|
---|
257 | #else
|
---|
258 | RTStrmPrintf(pStrm, "|dsound");
|
---|
259 | #endif
|
---|
260 | }
|
---|
261 | if (fSolaris)
|
---|
262 | {
|
---|
263 | RTStrmPrintf(pStrm, "|solaudio"
|
---|
264 | #ifdef VBOX_WITH_SOLARIS_OSS
|
---|
265 | "|oss"
|
---|
266 | #endif
|
---|
267 | );
|
---|
268 | }
|
---|
269 | if (fLinux)
|
---|
270 | {
|
---|
271 | RTStrmPrintf(pStrm, "|oss"
|
---|
272 | #ifdef VBOX_WITH_ALSA
|
---|
273 | "|alsa"
|
---|
274 | #endif
|
---|
275 | #ifdef VBOX_WITH_PULSE
|
---|
276 | "|pulse"
|
---|
277 | #endif
|
---|
278 | );
|
---|
279 | }
|
---|
280 | if (fFreeBSD)
|
---|
281 | {
|
---|
282 | /* Get the line break sorted when dumping all option variants. */
|
---|
283 | if (fDumpOpts)
|
---|
284 | {
|
---|
285 | RTStrmPrintf(pStrm, "|\n"
|
---|
286 | " oss");
|
---|
287 | }
|
---|
288 | else
|
---|
289 | RTStrmPrintf(pStrm, "|oss");
|
---|
290 | #ifdef VBOX_WITH_PULSE
|
---|
291 | RTStrmPrintf(pStrm, "|pulse");
|
---|
292 | #endif
|
---|
293 | }
|
---|
294 | if (fDarwin)
|
---|
295 | {
|
---|
296 | RTStrmPrintf(pStrm, "|coreaudio");
|
---|
297 | }
|
---|
298 | RTStrmPrintf(pStrm, "]\n");
|
---|
299 | RTStrmPrintf(pStrm,
|
---|
300 | " [--audiocontroller ac97|hda|sb16]\n"
|
---|
301 | " [--clipboard disabled|hosttoguest|guesttohost|\n"
|
---|
302 | " bidirectional]\n");
|
---|
303 | RTStrmPrintf(pStrm,
|
---|
304 | " [--vrde on|off]\n"
|
---|
305 | " [--vrdeextpack default|<name>\n"
|
---|
306 | " [--vrdeproperty <name=[value]>]\n"
|
---|
307 | " [--vrdeport <hostport>]\n"
|
---|
308 | " [--vrdeaddress <hostip>]\n"
|
---|
309 | " [--vrdeauthtype null|external|guest]\n"
|
---|
310 | " [--vrdeauthlibrary default|<name>\n"
|
---|
311 | " [--vrdemulticon on|off]\n"
|
---|
312 | " [--vrdereusecon on|off]\n"
|
---|
313 | " [--vrdevideochannel on|off]\n"
|
---|
314 | " [--vrdevideochannelquality <percent>]\n");
|
---|
315 | RTStrmPrintf(pStrm,
|
---|
316 | " [--usb on|off]\n"
|
---|
317 | " [--usbehci on|off]\n"
|
---|
318 | " [--snapshotfolder default|<path>]\n"
|
---|
319 | " [--teleporter on|off]\n"
|
---|
320 | " [--teleporterport <port>]\n"
|
---|
321 | " [--teleporteraddress <address|empty>\n"
|
---|
322 | " [--teleporterpassword <password>]\n"
|
---|
323 | " [--teleporterpasswordfile <file>|stdin]\n"
|
---|
324 | " [--tracing-enabled on|off]\n"
|
---|
325 | " [--tracing-config <config-string>]\n"
|
---|
326 | " [--tracing-allow-vm-access on|off]\n"
|
---|
327 | #if 0
|
---|
328 | " [--iocache on|off]\n"
|
---|
329 | " [--iocachesize <I/O cache size in MB>]\n"
|
---|
330 | #endif
|
---|
331 | #if 0
|
---|
332 | " [--faulttolerance master|standby]\n"
|
---|
333 | " [--faulttoleranceaddress <name>]\n"
|
---|
334 | " [--faulttoleranceport <port>]\n"
|
---|
335 | " [--faulttolerancesyncinterval <msec>]\n"
|
---|
336 | " [--faulttolerancepassword <password>]\n"
|
---|
337 | #endif
|
---|
338 | "\n");
|
---|
339 | }
|
---|
340 |
|
---|
341 | if (u64Cmd & USAGE_CLONEVM)
|
---|
342 | RTStrmPrintf(pStrm,
|
---|
343 | "VBoxManage clonevm <uuid>|<name>\n"
|
---|
344 | " [--snapshot <uuid>|<name>]\n"
|
---|
345 | " [--mode machine|machineandchildren|all]\n"
|
---|
346 | " [--options link|keepallmacs|keepnatmacs|\n"
|
---|
347 | " keepdisknames]\n"
|
---|
348 | " [--name <name>]\n"
|
---|
349 | " [--basefolder <basefolder>]\n"
|
---|
350 | " [--uuid <uuid>]\n"
|
---|
351 | " [--register]\n"
|
---|
352 | "\n");
|
---|
353 |
|
---|
354 | if (u64Cmd & USAGE_IMPORTAPPLIANCE)
|
---|
355 | RTStrmPrintf(pStrm,
|
---|
356 | "VBoxManage import <ovf/ova>\n"
|
---|
357 | " [--dry-run|-n]\n"
|
---|
358 | " [--options keepallmacs|keepnatmacs]\n"
|
---|
359 | " [more options]\n"
|
---|
360 | " (run with -n to have options displayed\n"
|
---|
361 | " for a particular OVF)\n\n");
|
---|
362 |
|
---|
363 | if (u64Cmd & USAGE_EXPORTAPPLIANCE)
|
---|
364 | RTStrmPrintf(pStrm,
|
---|
365 | "VBoxManage export <machines> --output|-o <ovf/ova>\n"
|
---|
366 | " [--legacy09|--ovf09|--ovf10|--ovf20]\n"
|
---|
367 | " [--manifest]\n"
|
---|
368 | " [--vsys <number of virtual system>]\n"
|
---|
369 | " [--product <product name>]\n"
|
---|
370 | " [--producturl <product url>]\n"
|
---|
371 | " [--vendor <vendor name>]\n"
|
---|
372 | " [--vendorurl <vendor url>]\n"
|
---|
373 | " [--version <version info>]\n"
|
---|
374 | " [--eula <license text>]\n"
|
---|
375 | " [--eulafile <filename>]\n"
|
---|
376 | "\n");
|
---|
377 |
|
---|
378 | if (u64Cmd & USAGE_STARTVM)
|
---|
379 | {
|
---|
380 | RTStrmPrintf(pStrm,
|
---|
381 | "VBoxManage startvm <uuid>|<name>...\n");
|
---|
382 | RTStrmPrintf(pStrm,
|
---|
383 | " [--type gui");
|
---|
384 | if (fVBoxSDL)
|
---|
385 | RTStrmPrintf(pStrm, "|sdl");
|
---|
386 | RTStrmPrintf(pStrm, "|headless]\n");
|
---|
387 | RTStrmPrintf(pStrm,
|
---|
388 | "\n");
|
---|
389 | }
|
---|
390 |
|
---|
391 | if (u64Cmd & USAGE_CONTROLVM)
|
---|
392 | {
|
---|
393 | RTStrmPrintf(pStrm,
|
---|
394 | "VBoxManage controlvm <uuid>|<name>\n"
|
---|
395 | " pause|resume|reset|poweroff|savestate|\n"
|
---|
396 | " acpipowerbutton|acpisleepbutton|\n"
|
---|
397 | " keyboardputscancode <hex> [<hex> ...]|\n"
|
---|
398 | " setlinkstate<1-N> on|off |\n"
|
---|
399 | #if defined(VBOX_WITH_NETFLT)
|
---|
400 | " nic<1-N> null|nat|bridged|intnet|hostonly|generic"
|
---|
401 | "\n"
|
---|
402 | " [<devicename>] |\n"
|
---|
403 | #else /* !VBOX_WITH_NETFLT */
|
---|
404 | " nic<1-N> null|nat|bridged|intnet|generic\n"
|
---|
405 | " [<devicename>] |\n"
|
---|
406 | #endif /* !VBOX_WITH_NETFLT */
|
---|
407 | " nictrace<1-N> on|off\n"
|
---|
408 | " nictracefile<1-N> <filename>\n"
|
---|
409 | " nicproperty<1-N> name=[value]\n"
|
---|
410 | " natpf<1-N> [<rulename>],tcp|udp,[<hostip>],\n"
|
---|
411 | " <hostport>,[<guestip>],<guestport>\n"
|
---|
412 | " natpf<1-N> delete <rulename>\n"
|
---|
413 | " guestmemoryballoon <balloonsize in MB>]\n"
|
---|
414 | " gueststatisticsinterval <seconds>]\n"
|
---|
415 | " usbattach <uuid>|<address> |\n"
|
---|
416 | " usbdetach <uuid>|<address> |\n");
|
---|
417 | RTStrmPrintf(pStrm,
|
---|
418 | " vrde on|off |\n");
|
---|
419 | RTStrmPrintf(pStrm,
|
---|
420 | " vrdeport <port> |\n"
|
---|
421 | " vrdeproperty <name=[value]> |\n"
|
---|
422 | " vrdevideochannelquality <percent>\n");
|
---|
423 | RTStrmPrintf(pStrm,
|
---|
424 | " setvideomodehint <xres> <yres> <bpp> [display] |\n"
|
---|
425 | " screenshotpng <file> [display] |\n"
|
---|
426 | " setcredentials <username> <password> <domain>\n"
|
---|
427 | " [--allowlocallogon <yes|no>] |\n"
|
---|
428 | " teleport --host <name> --port <port>\n"
|
---|
429 | " [--maxdowntime <msec>] [--password password]\n"
|
---|
430 | " plugcpu <id>\n"
|
---|
431 | " unplugcpu <id>\n"
|
---|
432 | " cpuexecutioncap <1-100>\n"
|
---|
433 | "\n");
|
---|
434 | }
|
---|
435 |
|
---|
436 | if (u64Cmd & USAGE_DISCARDSTATE)
|
---|
437 | RTStrmPrintf(pStrm,
|
---|
438 | "VBoxManage discardstate <uuid>|<name>\n"
|
---|
439 | "\n");
|
---|
440 |
|
---|
441 | if (u64Cmd & USAGE_ADOPTSTATE)
|
---|
442 | RTStrmPrintf(pStrm,
|
---|
443 | "VBoxManage adoptstate <uuid>|<name> <state_file>\n"
|
---|
444 | "\n");
|
---|
445 |
|
---|
446 | if (u64Cmd & USAGE_SNAPSHOT)
|
---|
447 | RTStrmPrintf(pStrm,
|
---|
448 | "VBoxManage snapshot <uuid>|<name>\n"
|
---|
449 | " take <name> [--description <desc>] [--pause] |\n"
|
---|
450 | " delete <uuid>|<name> |\n"
|
---|
451 | " restore <uuid>|<name> |\n"
|
---|
452 | " restorecurrent |\n"
|
---|
453 | " edit <uuid>|<name>|--current\n"
|
---|
454 | " [--name <name>]\n"
|
---|
455 | " [--description <desc>] |\n"
|
---|
456 | " list [--details|--machinereadable]\n"
|
---|
457 | " showvminfo <uuid>|<name>\n"
|
---|
458 | "\n");
|
---|
459 |
|
---|
460 | if (u64Cmd & USAGE_CLOSEMEDIUM)
|
---|
461 | RTStrmPrintf(pStrm,
|
---|
462 | "VBoxManage closemedium disk|dvd|floppy <uuid>|<filename>\n"
|
---|
463 | " [--delete]\n"
|
---|
464 | "\n");
|
---|
465 |
|
---|
466 | if (u64Cmd & USAGE_STORAGEATTACH)
|
---|
467 | RTStrmPrintf(pStrm,
|
---|
468 | "VBoxManage storageattach <uuid|vmname>\n"
|
---|
469 | " --storagectl <name>\n"
|
---|
470 | " [--port <number>]\n"
|
---|
471 | " [--device <number>]\n"
|
---|
472 | " [--type dvddrive|hdd|fdd]\n"
|
---|
473 | " [--medium none|emptydrive|\n"
|
---|
474 | " <uuid>|<filename>|host:<drive>|iscsi]\n"
|
---|
475 | " [--mtype normal|writethrough|immutable|shareable|\n"
|
---|
476 | " readonly|multiattach]\n"
|
---|
477 | " [--comment <text>]\n"
|
---|
478 | " [--setuuid <uuid>]\n"
|
---|
479 | " [--setparentuuid <uuid>]\n"
|
---|
480 | " [--passthrough on|off]\n"
|
---|
481 | " [--tempeject on|off]\n"
|
---|
482 | " [--nonrotational on|off]\n"
|
---|
483 | " [--discard on|off]\n"
|
---|
484 | " [--bandwidthgroup <name>]\n"
|
---|
485 | " [--forceunmount]\n"
|
---|
486 | " [--server <name>|<ip>]\n"
|
---|
487 | " [--target <target>]\n"
|
---|
488 | " [--tport <port>]\n"
|
---|
489 | " [--lun <lun>]\n"
|
---|
490 | " [--encodedlun <lun>]\n"
|
---|
491 | " [--username <username>]\n"
|
---|
492 | " [--password <password>]\n"
|
---|
493 | " [--intnet]\n"
|
---|
494 | "\n");
|
---|
495 |
|
---|
496 | if (u64Cmd & USAGE_STORAGECONTROLLER)
|
---|
497 | RTStrmPrintf(pStrm,
|
---|
498 | "VBoxManage storagectl <uuid|vmname>\n"
|
---|
499 | " --name <name>\n"
|
---|
500 | " [--add ide|sata|scsi|floppy|sas]\n"
|
---|
501 | " [--controller LSILogic|LSILogicSAS|BusLogic|\n"
|
---|
502 | " IntelAHCI|PIIX3|PIIX4|ICH6|I82078]\n"
|
---|
503 | " [--sataideemulation<1-4> <1-30>]\n"
|
---|
504 | " [--sataportcount <1-30>]\n"
|
---|
505 | " [--hostiocache on|off]\n"
|
---|
506 | " [--bootable on|off]\n"
|
---|
507 | " [--remove]\n"
|
---|
508 | "\n");
|
---|
509 |
|
---|
510 | if (u64Cmd & USAGE_BANDWIDTHCONTROL)
|
---|
511 | RTStrmPrintf(pStrm,
|
---|
512 | "VBoxManage bandwidthctl <uuid|vmname>\n"
|
---|
513 | " add <name> --type <disk|network> --limit <megabytes per second> |\n"
|
---|
514 | " set <name> --limit <megabytes per second> |\n"
|
---|
515 | " remove <name> |\n"
|
---|
516 | " list [--machinereadable]\n"
|
---|
517 | "\n");
|
---|
518 |
|
---|
519 | if (u64Cmd & USAGE_SHOWHDINFO)
|
---|
520 | RTStrmPrintf(pStrm,
|
---|
521 | "VBoxManage showhdinfo <uuid>|<filename>\n"
|
---|
522 | "\n");
|
---|
523 |
|
---|
524 | if (u64Cmd & USAGE_CREATEHD)
|
---|
525 | RTStrmPrintf(pStrm,
|
---|
526 | "VBoxManage createhd --filename <filename>\n"
|
---|
527 | " [--size <megabytes>|--sizebyte <bytes>]\n"
|
---|
528 | " [--diffparent <uuid>|<filename>\n"
|
---|
529 | " [--format VDI|VMDK|VHD] (default: VDI)\n"
|
---|
530 | " [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
|
---|
531 | "\n");
|
---|
532 |
|
---|
533 | if (u64Cmd & USAGE_MODIFYHD)
|
---|
534 | RTStrmPrintf(pStrm,
|
---|
535 | "VBoxManage modifyhd <uuid>|<filename>\n"
|
---|
536 | " [--type normal|writethrough|immutable|shareable|\n"
|
---|
537 | " readonly|multiattach]\n"
|
---|
538 | " [--autoreset on|off]\n"
|
---|
539 | " [--compact]\n"
|
---|
540 | " [--resize <megabytes>|--resizebyte <bytes>]\n"
|
---|
541 | "\n");
|
---|
542 |
|
---|
543 | if (u64Cmd & USAGE_CLONEHD)
|
---|
544 | RTStrmPrintf(pStrm,
|
---|
545 | "VBoxManage clonehd <uuid>|<filename> <uuid>|<outputfile>\n"
|
---|
546 | " [--format VDI|VMDK|VHD|RAW|<other>]\n"
|
---|
547 | " [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
|
---|
548 | " [--existing]\n"
|
---|
549 | "\n");
|
---|
550 |
|
---|
551 | if (u64Cmd & USAGE_CONVERTFROMRAW)
|
---|
552 | RTStrmPrintf(pStrm,
|
---|
553 | "VBoxManage convertfromraw <filename> <outputfile>\n"
|
---|
554 | " [--format VDI|VMDK|VHD]\n"
|
---|
555 | " [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
|
---|
556 | " [--uuid <uuid>]\n"
|
---|
557 | "VBoxManage convertfromraw stdin <outputfile> <bytes>\n"
|
---|
558 | " [--format VDI|VMDK|VHD]\n"
|
---|
559 | " [--variant Standard,Fixed,Split2G,Stream,ESX]\n"
|
---|
560 | " [--uuid <uuid>]\n"
|
---|
561 | "\n");
|
---|
562 |
|
---|
563 | if (u64Cmd & USAGE_GETEXTRADATA)
|
---|
564 | RTStrmPrintf(pStrm,
|
---|
565 | "VBoxManage getextradata global|<uuid>|<name>\n"
|
---|
566 | " <key>|enumerate\n"
|
---|
567 | "\n");
|
---|
568 |
|
---|
569 | if (u64Cmd & USAGE_SETEXTRADATA)
|
---|
570 | RTStrmPrintf(pStrm,
|
---|
571 | "VBoxManage setextradata global|<uuid>|<name>\n"
|
---|
572 | " <key>\n"
|
---|
573 | " [<value>] (no value deletes key)\n"
|
---|
574 | "\n");
|
---|
575 |
|
---|
576 | if (u64Cmd & USAGE_SETPROPERTY)
|
---|
577 | RTStrmPrintf(pStrm,
|
---|
578 | "VBoxManage setproperty machinefolder default|<folder> |\n"
|
---|
579 | " vrdeauthlibrary default|<library> |\n"
|
---|
580 | " websrvauthlibrary default|null|<library> |\n"
|
---|
581 | " vrdeextpack null|<library> |\n"
|
---|
582 | " loghistorycount <value>\n"
|
---|
583 | "\n");
|
---|
584 |
|
---|
585 | if (u64Cmd & USAGE_USBFILTER_ADD)
|
---|
586 | RTStrmPrintf(pStrm,
|
---|
587 | "VBoxManage usbfilter add <index,0-N>\n"
|
---|
588 | " --target <uuid>|<name>|global\n"
|
---|
589 | " --name <string>\n"
|
---|
590 | " --action ignore|hold (global filters only)\n"
|
---|
591 | " [--active yes|no] (yes)\n"
|
---|
592 | " [--vendorid <XXXX>] (null)\n"
|
---|
593 | " [--productid <XXXX>] (null)\n"
|
---|
594 | " [--revision <IIFF>] (null)\n"
|
---|
595 | " [--manufacturer <string>] (null)\n"
|
---|
596 | " [--product <string>] (null)\n"
|
---|
597 | " [--remote yes|no] (null, VM filters only)\n"
|
---|
598 | " [--serialnumber <string>] (null)\n"
|
---|
599 | " [--maskedinterfaces <XXXXXXXX>]\n"
|
---|
600 | "\n");
|
---|
601 |
|
---|
602 | if (u64Cmd & USAGE_USBFILTER_MODIFY)
|
---|
603 | RTStrmPrintf(pStrm,
|
---|
604 | "VBoxManage usbfilter modify <index,0-N>\n"
|
---|
605 | " --target <uuid>|<name>|global\n"
|
---|
606 | " [--name <string>]\n"
|
---|
607 | " [--action ignore|hold] (global filters only)\n"
|
---|
608 | " [--active yes|no]\n"
|
---|
609 | " [--vendorid <XXXX>|\"\"]\n"
|
---|
610 | " [--productid <XXXX>|\"\"]\n"
|
---|
611 | " [--revision <IIFF>|\"\"]\n"
|
---|
612 | " [--manufacturer <string>|\"\"]\n"
|
---|
613 | " [--product <string>|\"\"]\n"
|
---|
614 | " [--remote yes|no] (null, VM filters only)\n"
|
---|
615 | " [--serialnumber <string>|\"\"]\n"
|
---|
616 | " [--maskedinterfaces <XXXXXXXX>]\n"
|
---|
617 | "\n");
|
---|
618 |
|
---|
619 | if (u64Cmd & USAGE_USBFILTER_REMOVE)
|
---|
620 | RTStrmPrintf(pStrm,
|
---|
621 | "VBoxManage usbfilter remove <index,0-N>\n"
|
---|
622 | " --target <uuid>|<name>|global\n"
|
---|
623 | "\n");
|
---|
624 |
|
---|
625 | if (u64Cmd & USAGE_SHAREDFOLDER_ADD)
|
---|
626 | RTStrmPrintf(pStrm,
|
---|
627 | "VBoxManage sharedfolder add <vmname>|<uuid>\n"
|
---|
628 | " --name <name> --hostpath <hostpath>\n"
|
---|
629 | " [--transient] [--readonly] [--automount]\n"
|
---|
630 | "\n");
|
---|
631 |
|
---|
632 | if (u64Cmd & USAGE_SHAREDFOLDER_REMOVE)
|
---|
633 | RTStrmPrintf(pStrm,
|
---|
634 | "VBoxManage sharedfolder remove <vmname>|<uuid>\n"
|
---|
635 | " --name <name> [--transient]\n"
|
---|
636 | "\n");
|
---|
637 |
|
---|
638 | #ifdef VBOX_WITH_GUEST_PROPS
|
---|
639 | if (u64Cmd & USAGE_GUESTPROPERTY)
|
---|
640 | usageGuestProperty(pStrm);
|
---|
641 | #endif /* VBOX_WITH_GUEST_PROPS defined */
|
---|
642 |
|
---|
643 | #ifdef VBOX_WITH_GUEST_CONTROL
|
---|
644 | if (u64Cmd & USAGE_GUESTCONTROL)
|
---|
645 | usageGuestControl(pStrm);
|
---|
646 | #endif /* VBOX_WITH_GUEST_CONTROL defined */
|
---|
647 |
|
---|
648 | if (u64Cmd & USAGE_DEBUGVM)
|
---|
649 | {
|
---|
650 | RTStrmPrintf(pStrm,
|
---|
651 | "VBoxManage debugvm <uuid>|<name>\n"
|
---|
652 | " dumpguestcore --filename <name> |\n"
|
---|
653 | " info <item> [args] |\n"
|
---|
654 | " injectnmi |\n"
|
---|
655 | " log [--release|--debug] <settings> ...|\n"
|
---|
656 | " logdest [--release|--debug] <settings> ...|\n"
|
---|
657 | " logflags [--release|--debug] <settings> ...|\n"
|
---|
658 | " osdetect |\n"
|
---|
659 | " osinfo |\n"
|
---|
660 | " getregisters [--cpu <id>] <reg>|all ... |\n"
|
---|
661 | " setregisters [--cpu <id>] <reg>=<value> ... |\n"
|
---|
662 | " show [--human-readable|--sh-export|--sh-eval|--cmd-set] \n"
|
---|
663 | " <logdbg-settings|logrel-settings> [[opt] what ...] |\n"
|
---|
664 | " statistics [--reset] [--pattern <pattern>]\n"
|
---|
665 | " [--descriptions]\n"
|
---|
666 | "\n");
|
---|
667 | }
|
---|
668 | if (u64Cmd & USAGE_METRICS)
|
---|
669 | RTStrmPrintf(pStrm,
|
---|
670 | "VBoxManage metrics list [*|host|<vmname> [<metric_list>]]\n"
|
---|
671 | " (comma-separated)\n\n"
|
---|
672 | "VBoxManage metrics setup\n"
|
---|
673 | " [--period <seconds>] (default: 1)\n"
|
---|
674 | " [--samples <count>] (default: 1)\n"
|
---|
675 | " [--list]\n"
|
---|
676 | " [*|host|<vmname> [<metric_list>]]\n\n"
|
---|
677 | "VBoxManage metrics query [*|host|<vmname> [<metric_list>]]\n\n"
|
---|
678 | "VBoxManage metrics enable\n"
|
---|
679 | " [--list]\n"
|
---|
680 | " [*|host|<vmname> [<metric_list>]]\n\n"
|
---|
681 | "VBoxManage metrics disable\n"
|
---|
682 | " [--list]\n"
|
---|
683 | " [*|host|<vmname> [<metric_list>]]\n\n"
|
---|
684 | "VBoxManage metrics collect\n"
|
---|
685 | " [--period <seconds>] (default: 1)\n"
|
---|
686 | " [--samples <count>] (default: 1)\n"
|
---|
687 | " [--list]\n"
|
---|
688 | " [--detach]\n"
|
---|
689 | " [*|host|<vmname> [<metric_list>]]\n"
|
---|
690 | "\n");
|
---|
691 |
|
---|
692 | #if defined(VBOX_WITH_NETFLT)
|
---|
693 | if (u64Cmd & USAGE_HOSTONLYIFS)
|
---|
694 | {
|
---|
695 | RTStrmPrintf(pStrm,
|
---|
696 | "VBoxManage hostonlyif ipconfig <name>\n"
|
---|
697 | " [--dhcp |\n"
|
---|
698 | " --ip<ipv4> [--netmask<ipv4> (def: 255.255.255.0)] |\n"
|
---|
699 | " --ipv6<ipv6> [--netmasklengthv6<length> (def: 64)]]\n"
|
---|
700 | # if !defined(RT_OS_SOLARIS)
|
---|
701 | " create |\n"
|
---|
702 | " remove <name>\n"
|
---|
703 | # endif
|
---|
704 | "\n");
|
---|
705 | }
|
---|
706 | #endif
|
---|
707 |
|
---|
708 | if (u64Cmd & USAGE_DHCPSERVER)
|
---|
709 | {
|
---|
710 | RTStrmPrintf(pStrm,
|
---|
711 | "VBoxManage dhcpserver add|modify --netname <network_name> |\n"
|
---|
712 | #if defined(VBOX_WITH_NETFLT)
|
---|
713 | " --ifname <hostonly_if_name>\n"
|
---|
714 | #endif
|
---|
715 | " [--ip <ip_address>\n"
|
---|
716 | " --netmask <network_mask>\n"
|
---|
717 | " --lowerip <lower_ip>\n"
|
---|
718 | " --upperip <upper_ip>]\n"
|
---|
719 | " [--enable | --disable]\n\n"
|
---|
720 | "VBoxManage dhcpserver remove --netname <network_name> |\n"
|
---|
721 | #if defined(VBOX_WITH_NETFLT)
|
---|
722 | " --ifname <hostonly_if_name>\n"
|
---|
723 | #endif
|
---|
724 | "\n");
|
---|
725 | }
|
---|
726 | if (u64Cmd & USAGE_EXTPACK)
|
---|
727 | {
|
---|
728 | RTStrmPrintf(pStrm,
|
---|
729 | "VBoxManage extpack install [--replace] <tarball> |\n"
|
---|
730 | " uninstall [--force] <name> |\n"
|
---|
731 | " cleanup\n"
|
---|
732 | "\n");
|
---|
733 | }
|
---|
734 | }
|
---|
735 |
|
---|
736 | /**
|
---|
737 | * Print a usage synopsis and the syntax error message.
|
---|
738 | * @returns RTEXITCODE_SYNTAX.
|
---|
739 | */
|
---|
740 | RTEXITCODE errorSyntax(USAGECATEGORY u64Cmd, const char *pszFormat, ...)
|
---|
741 | {
|
---|
742 | va_list args;
|
---|
743 | showLogo(g_pStdErr); // show logo even if suppressed
|
---|
744 | #ifndef VBOX_ONLY_DOCS
|
---|
745 | if (g_fInternalMode)
|
---|
746 | printUsageInternal(u64Cmd, g_pStdErr);
|
---|
747 | else
|
---|
748 | printUsage(u64Cmd, g_pStdErr);
|
---|
749 | #endif /* !VBOX_ONLY_DOCS */
|
---|
750 | va_start(args, pszFormat);
|
---|
751 | RTStrmPrintf(g_pStdErr, "\nSyntax error: %N\n", pszFormat, &args);
|
---|
752 | va_end(args);
|
---|
753 | return RTEXITCODE_SYNTAX;
|
---|
754 | }
|
---|
755 |
|
---|
756 | /**
|
---|
757 | * errorSyntax for RTGetOpt users.
|
---|
758 | *
|
---|
759 | * @returns RTEXITCODE_SYNTAX.
|
---|
760 | *
|
---|
761 | * @param fUsageCategory The usage category of the command.
|
---|
762 | * @param rc The RTGetOpt return code.
|
---|
763 | * @param pValueUnion The value union.
|
---|
764 | */
|
---|
765 | RTEXITCODE errorGetOpt(USAGECATEGORY fUsageCategory, int rc, union RTGETOPTUNION const *pValueUnion)
|
---|
766 | {
|
---|
767 | /*
|
---|
768 | * Check if it is an unhandled standard option.
|
---|
769 | */
|
---|
770 | if (rc == 'V')
|
---|
771 | {
|
---|
772 | RTPrintf("%sr%d\n", VBOX_VERSION_STRING, RTBldCfgRevision());
|
---|
773 | return RTEXITCODE_SUCCESS;
|
---|
774 | }
|
---|
775 |
|
---|
776 | if (rc == 'h')
|
---|
777 | {
|
---|
778 | showLogo(g_pStdErr);
|
---|
779 | #ifndef VBOX_ONLY_DOCS
|
---|
780 | if (g_fInternalMode)
|
---|
781 | printUsageInternal(fUsageCategory, g_pStdOut);
|
---|
782 | else
|
---|
783 | printUsage(fUsageCategory, g_pStdOut);
|
---|
784 | #endif
|
---|
785 | return RTEXITCODE_SUCCESS;
|
---|
786 | }
|
---|
787 |
|
---|
788 | /*
|
---|
789 | * General failure.
|
---|
790 | */
|
---|
791 | showLogo(g_pStdErr); // show logo even if suppressed
|
---|
792 | #ifndef VBOX_ONLY_DOCS
|
---|
793 | if (g_fInternalMode)
|
---|
794 | printUsageInternal(fUsageCategory, g_pStdErr);
|
---|
795 | else
|
---|
796 | printUsage(fUsageCategory, g_pStdErr);
|
---|
797 | #endif /* !VBOX_ONLY_DOCS */
|
---|
798 |
|
---|
799 | if (rc == VINF_GETOPT_NOT_OPTION)
|
---|
800 | return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Invalid parameter '%s'", pValueUnion->psz);
|
---|
801 | if (rc > 0)
|
---|
802 | {
|
---|
803 | if (RT_C_IS_PRINT(rc))
|
---|
804 | return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Invalid option -%c", rc);
|
---|
805 | return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Invalid option case %i", rc);
|
---|
806 | }
|
---|
807 | if (rc == VERR_GETOPT_UNKNOWN_OPTION)
|
---|
808 | return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Unknown option: %s", pValueUnion->psz);
|
---|
809 | if (pValueUnion->pDef)
|
---|
810 | return RTMsgErrorExit(RTEXITCODE_SYNTAX, "%s: %Rrs", pValueUnion->pDef->pszLong, rc);
|
---|
811 | return RTMsgErrorExit(RTEXITCODE_SYNTAX, "%Rrs", rc);
|
---|
812 | }
|
---|
813 |
|
---|
814 | /**
|
---|
815 | * Print an error message without the syntax stuff.
|
---|
816 | *
|
---|
817 | * @returns RTEXITCODE_SYNTAX.
|
---|
818 | */
|
---|
819 | RTEXITCODE errorArgument(const char *pszFormat, ...)
|
---|
820 | {
|
---|
821 | va_list args;
|
---|
822 | va_start(args, pszFormat);
|
---|
823 | RTMsgErrorV(pszFormat, args);
|
---|
824 | va_end(args);
|
---|
825 | return RTEXITCODE_SYNTAX;
|
---|
826 | }
|
---|