- Timestamp:
- Jul 4, 2011 12:22:02 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/user_VBoxManage.xml
r37709 r37761 747 747 <listitem> 748 748 <para><computeroutput>--nicgenericdrv<1-N> 749 <backend driver></computeroutput>: If generic networking has been 749 <backend driver></computeroutput>: If generic networking has been 750 750 enabled for a virtual network card (see the 751 751 <computeroutput>--nic</computeroutput> option above; otherwise … … 754 754 </para> 755 755 </listitem> 756 757 <listitem> 758 <para><computeroutput>--nicproperty<1-N> 756 757 <listitem> 758 <para><computeroutput>--nicproperty<1-N> 759 759 <paramname>="paramvalue"</computeroutput>: 760 760 This option, in combination with "nicgenericdrv" allows you to 761 761 pass parameters to rarely-used network backends.</para><para> 762 762 Those parameters are backend engine-specific, and are different 763 between UDP Tunnel and the VDE backend drivers. For example, 763 between UDP Tunnel and the VDE backend drivers. For example, 764 764 please see <xref linkend="network_udp_tunnel" />. 765 765 </para> … … 1340 1340 (<computeroutput>intnet</computeroutput>) or host-only networking 1341 1341 (<computeroutput>hostonly</computeroutput>) or access to rarely used 1342 sub-modes 1342 sub-modes 1343 1343 (<computeroutput>generic</computeroutput>). These options correspond 1344 1344 to the modes which are described in detail in <xref … … 2456 2456 running and has the following syntax:</para> 2457 2457 2458 <screen>VBoxManage guestcontrol <vmname>|<uuid> exec[ute]2459 <path to program>2458 <screen>VBoxManage guestcontrol exec[ute] <vmname>|<uuid> 2459 --image <path to program> 2460 2460 --username <name> --password <password> 2461 [--arguments "<arguments>"]2462 2461 [--environment "<NAME>=<VALUE> [<NAME>=<VALUE>]"] 2463 2462 [--flags <flags>] [--timeout <msec>] 2464 [--verbose] [--wait-for exit,stdout,stderr||]</screen> 2463 [--verbose] [--wait-exit] [--wait-stdout] [--wait-stderr] 2464 -- [[<argument1>] ... [<argumentN>]]</screen> 2465 2465 2466 2466 <para>where the parameters mean: <glosslist> … … 2474 2474 2475 2475 <glossentry> 2476 <glossterm> path to program</glossterm>2476 <glossterm>--image "<path to program>"</glossterm> 2477 2477 2478 2478 <glossdef> … … 2570 2570 2571 2571 <glossentry> 2572 <glossterm>--wait- for <action></glossterm>2572 <glossterm>--wait-exit</glossterm> 2573 2573 2574 2574 <glossdef> 2575 <para>Tells VBoxManage to wait for a certain action to 2576 happen and react to it. The following actions are available: 2577 <glosslist> 2578 <glossentry> 2579 <glossterm>exit</glossterm> 2580 2581 <glossdef> 2582 <para>Waits until the process ends and outputs its 2583 exit code along with the exit reason/flags.</para> 2584 </glossdef> 2585 </glossentry> 2586 2587 <glossentry> 2588 <glossterm>stdout or stderr</glossterm> 2589 2590 <glossdef> 2591 <para>Waits until the process ends and outputs its 2592 exit code along with the exit reason/flags. After 2593 that VBoxManage retrieves the output collected from 2594 the guest process's stdout and stderr.</para> 2595 </glossdef> 2596 </glossentry> 2597 </glosslist></para> 2575 <para>Waits until the process ends and outputs its 2576 exit code along with the exit reason/flags.</para> 2598 2577 </glossdef> 2599 2578 </glossentry> 2579 2580 <glossentry> 2581 <glossterm>--wait-stdout</glossterm> 2582 2583 <glossdef> 2584 <para>Waits until the process ends and outputs its 2585 exit code along with the exit reason/flags. While waiting 2586 VBoxManage retrieves the process output collected from stdout.</para> 2587 </glossdef> 2588 </glossentry> 2589 2590 <glossentry> 2591 <glossterm>--wait-stderr</glossterm> 2592 2593 <glossdef> 2594 <para>Waits until the process ends and outputs its 2595 exit code along with the exit reason/flags. While waiting 2596 VBoxManage retrieves the process output collected from stderr.</para> 2597 </glossdef> 2598 </glossentry> 2599 2600 2600 </glosslist></para> 2601 2601 … … 2721 2721 Additions 4.0 and later).</para> 2722 2722 2723 <screen>VBoxManage guestcontrol <vmname>|<uuid> createdir[ectory]|mkdir|md 2723 <screen>VBoxManage guestcontrol <vmname>|<uuid> createdir[ectory]|mkdir|md 2724 2724 <directory to create on guest> 2725 2725 [--username "<name>"] [--password "<password>"] -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r37634 r37761 186 186 " [--environment \"<NAME>=<VALUE> [<NAME>=<VALUE>]\"]\n" 187 187 " [--timeout <msec>] [--unix2dos] [--verbose]\n" 188 " [--wait-exit] [--wait-stdout] [--wait-std out]\n"188 " [--wait-exit] [--wait-stdout] [--wait-stderr]\n" 189 189 //" [--output-format=<dos>|<unix>]\n" 190 190 " [--output-type=<binary>|<text>]\n" 191 " [-- [<argument1>] ... [<argumentN>] \n"191 " [-- [<argument1>] ... [<argumentN>]]\n" 192 192 /** @todo Add a "--" parameter (has to be last parameter) to directly execute 193 193 * stuff, e.g. "VBoxManage guestcontrol execute <VMName> --username <> ... -- /bin/rm -Rf /foo". */
Note:
See TracChangeset
for help on using the changeset viewer.