Changeset 34680 in vbox for trunk/doc/manual/en_US
- Timestamp:
- Dec 3, 2010 9:44:32 AM (14 years ago)
- Location:
- trunk/doc/manual/en_US
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/user_BasicConcepts.xml
r34663 r34680 1068 1068 <para>In addition to allowing a guest access to your local USB devices, 1069 1069 VirtualBox even allows your guests to connect to remote USB devices by 1070 use of the V RDP protocol. For details about this, see <xref1071 linkend="usb-over-rdp" />.</para>1070 use of the VirtualBox Remote Desktop Extension (VRDE). For details about 1071 this, see <xref linkend="usb-over-rdp" />.</para> 1072 1072 1073 1073 <para>In the Settings dialog, you can first configure whether USB is … … 1075 1075 the USB 2.0 (EHCI) controller for the guest. If so, you can determine in 1076 1076 detail which devices are available. For this, you must create so-called 1077 "filters" by specifying certain properties of the USB device.</para> 1077 "filters" by specifying certain properties of the USB device.<note> 1078 <para>The EHCI controller is shipped as a VirtualBox extension 1079 package, which must be installed separately. See <xref 1080 linkend="intro-installing" /> for more installation.</para> 1081 </note></para> 1078 1082 1079 1083 <para>Clicking on the "+" button to the right of the "USB Device -
trunk/doc/manual/en_US/user_Frontends.xml
r34563 r34680 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" 3 3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd"> 4 4 <chapter> 5 5 <title>Remote virtual machines</title> 6 6 7 7 <sect1> 8 <title id="vrdp"> Remote display (VRDP support)</title>8 <title id="vrdp">The VirtualBox Remote Desktop Extension (VRDE)</title> 9 9 10 10 <para>VirtualBox, the graphical user interface, has a built-in server for 11 the VirtualBox Remote Desktop Protocol (VRDP). This allows you to see the11 the Microsoft Remote Desktop Protocol (RDP). This allows you to see the 12 12 output of a virtual machine's window remotely on any other computer and 13 13 control the virtual machine from there, as if the virtual machine was 14 running locally.</para> 15 16 <para>VRDP is a backwards-compatible extension to Microsoft's Remote 17 Desktop Protocol (RDP). Typically graphics updates and audio are sent from 18 the remote machine to the client, while keyboard and mouse events are sent 19 back. As a result, you can use any standard RDP client to control the 20 remote VM.</para> 21 22 <para>With <computeroutput>VirtualBox</computeroutput>, the graphical user 23 interface, the VRDP server is disabled by default, but can easily be 24 enabled on a per-VM basis either in the "Display" settings (see <xref 25 linkend="settings-display" />) or with 26 <computeroutput>VBoxManage</computeroutput>:<screen>VBoxManage modifyvm "VM name" --vrdp on</screen></para> 14 running locally.<note> 15 <para>The VRDE is shipped as a VirtualBox extension package, which 16 must be installed separately. See <xref linkend="intro-installing" /> 17 for more installation.</para> 18 </note></para> 19 20 <para>The VirtualBox Remote Desktop Extension (VRDE) is a 21 backwards-compatible extension to Microsoft's Remote Desktop Protocol 22 (RDP). Typically graphics updates and audio are sent from the remote 23 machine to the client, while keyboard and mouse events are sent back. As a 24 result, you can use any standard RDP client to control the remote 25 VM.</para> 26 27 <para>The RDP server is disabled by default. If the VRDE is installed, it 28 can easily be enabled on a per-VM basis either in the VirtualBox Manager 29 in the "Display" settings (see <xref linkend="settings-display" />) or 30 with <computeroutput>VBoxManage</computeroutput>:<screen>VBoxManage modifyvm "VM name" --vrde on</screen></para> 27 31 28 32 <para>If you use <computeroutput>VBoxHeadless</computeroutput> (described 29 further below), VRDP support will be automatically enabled since33 further below), RDP support will be automatically enabled since 30 34 VBoxHeadless has no other means of output.</para> 31 35 … … 40 44 number</emphasis> that the RDP server is using.</para> 41 45 42 <para>By default, the VRD P serveruses the standard RDP TCP port46 <para>By default, the VRDE uses the standard RDP TCP port 43 47 <computeroutput>3389</computeroutput>. You will need to change the 44 default port if you run more than one VRDP server, since the port can48 default port if you run more than one RDP server, since the port can 45 49 only be used by one server at a time; you might also need to change it 46 50 on Windows hosts since the default port might already be used by the RDP … … 53 57 <computeroutput>VBoxManage modifyvm</computeroutput> command. You can 54 58 specify a comma-separated list of ports or ranges of ports. Use a dash 55 between two port numbers to specify a range. The VRD P server will bind56 to<emphasis role="bold">one</emphasis> of available ports from the59 between two port numbers to specify a range. The VRDE will bind to 60 <emphasis role="bold">one</emphasis> of available ports from the 57 61 specified list. For example, <computeroutput>VBoxManage modifyvm "VM 58 name" --vrd pport 5000,5010-5012</computeroutput> will configure the62 name" --vrdeport 5000,5010-5012</computeroutput> will configure the 59 63 server to bind to one of the ports 5000, 5010, 5011 or 5012. See <xref 60 64 linkend="vboxmanage-modifyvm" /> for details.</para> … … 80 84 different port if necessary.</para> 81 85 82 <note><para>When connecting to localhost in order to test the connection, 83 the addresses <computeroutput>localhost</computeroutput> and 84 <computeroutput>127.0.0.1</computeroutput> might not work using 85 <computeroutput>mstsc.exe</computeroutput>. Instead, the address 86 <computeroutput>127.0.0.2[:3389]</computeroutput> has to be used.</para></note> 86 <note> 87 <para>When connecting to localhost in order to test the 88 connection, the addresses 89 <computeroutput>localhost</computeroutput> and 90 <computeroutput>127.0.0.1</computeroutput> might not work using 91 <computeroutput>mstsc.exe</computeroutput>. Instead, the address 92 <computeroutput>127.0.0.2[:3389]</computeroutput> has to be 93 used.</para> 94 </note> 87 95 </listitem> 88 96 … … 120 128 121 129 <sect2 id="vboxheadless"> 122 <title>VBoxHeadless, the VRDP-only server</title> 123 124 <para>While the VRDP server that is built into the 125 <computeroutput>VirtualBox</computeroutput> GUI is perfectly capable of 130 <title>VBoxHeadless, the RDP-only server</title> 131 132 <para>While any VM started from the VirtualBox Manager is capable of 126 133 running virtual machines remotely, it is not convenient to have to run 127 <computeroutput>VirtualBox</computeroutput> if you never want to have 128 VMs displayed locally in the first place. In particular, if you are 129 running servers whose only purpose is to host VMs, and all your VMs are 130 supposed to run remotely over VRDP, then it is pointless to have a 131 graphical user interface on the server at all -- especially since, on a 132 Linux or Solaris host, <computeroutput>VirtualBox</computeroutput> comes 133 with dependencies on the Qt and SDL libraries, which is inconvenient if 134 you would rather not have the X Window system on your server at 135 all.</para> 134 the full-fledged GUI if you never want to have VMs displayed locally in 135 the first place. In particular, if you are running servers whose only 136 purpose is to host VMs, and all your VMs are supposed to run remotely 137 over RDP, then it is pointless to have a graphical user interface on the 138 server at all -- especially since, on a Linux or Solaris host, 139 <computeroutput>VirtualBox</computeroutput> comes with dependencies on 140 the Qt and SDL libraries, which is inconvenient if you would rather not 141 have the X Window system on your server at all.</para> 136 142 137 143 <para>VirtualBox therefore comes with yet another front-end called 138 144 <computeroutput>VBoxHeadless</computeroutput>, which produces no visible 139 output on the host at all, but instead only delivers VRDP data.<footnote>145 output on the host at all, but instead only delivers RDP data.<footnote> 140 146 <para>Before VirtualBox 1.6, the headless server was called 141 147 <computeroutput>VBoxVRDP</computeroutput>. For the sake of backwards … … 149 155 <itemizedlist> 150 156 <listitem> 151 <para>You can use <screen>VBoxManage startvm "VM name" --type vrdp</screen>157 <para>You can use <screen>VBoxManage startvm "VM name" --type headless</screen> 152 158 The extra <computeroutput>--type</computeroutput> option causes the 153 159 VirtualBox core to use <computeroutput>VBoxHeadless</computeroutput> … … 171 177 <para>Note that when you use 172 178 <computeroutput>VBoxHeadless</computeroutput> to start a VM, since the 173 headless server has no other means of output, the built-in VRDP server179 headless server has no other means of output, the built-in RDP server 174 180 will <emphasis>always</emphasis> be enabled, regardless of whether you 175 181 have enabled the VRDP server in the VM's settings. If this is 176 182 undesirable (for example because you want to access the VM via 177 183 <computeroutput>ssh</computeroutput> only), start the VM like 178 this:<screen>VBoxHeadless --startvm <uuid|name> --vrd p=off</screen>To184 this:<screen>VBoxHeadless --startvm <uuid|name> --vrde=off</screen>To 179 185 have the VRDP server use the setting from the VM configuration, as the 180 other front-ends would, use this:<screen>VBoxHeadless --startvm <uuid|name> --vrd p=config</screen></para>186 other front-ends would, use this:<screen>VBoxHeadless --startvm <uuid|name> --vrde=config</screen></para> 181 187 </sect2> 182 188 … … 187 193 <para>The following instructions may give you an idea how to create a 188 194 virtual machine on a headless server over a network connection. We will 189 create a virtual machine, establish a VRDP connection and install a195 create a virtual machine, establish an RDP connection and install a 190 196 guest operating system -- all without having to touch the headless 191 197 server. All you need is the following:</para> … … 259 265 260 266 <listitem> 261 <para>Register the ISO file that contains the operating system 262 installation that you want to install later:<screen>VBoxManage openmedium dvd /full/path/to/iso.iso</screen></para> 263 </listitem> 264 265 <listitem> 266 <para>Attach this ISO to the virtual machine, so it can boot from 267 it:<screen>VBoxManage storageattach "Windows XP" --storagectl "IDE Controller" 267 <para>Attach the ISO file that contains the operating system 268 installation that you want to install later to the virtual 269 machine, so the machine can boot from it:<screen>VBoxManage storageattach "Windows XP" --storagectl "IDE Controller" 268 270 --port 0 --device 1 --type dvddrive --medium /full/path/to/iso.iso</screen></para> 269 271 </listitem> … … 291 293 <title>Remote USB</title> 292 294 293 <para>As a special feature on top of the VRDP support, VirtualBox294 supports remote USB devices over the wire as well. That is, the295 VirtualBox guest that runs on one computer can access the USB devices of296 the remote computer on which the RDP data is being displayed the same297 way as USB devices that are connected to the actual host. This allows298 for running virtual machines on a VirtualBox host that acts as a server,299 where a client can connect from elsewhere that needs only a network300 adapter and a display capable of running an RDP viewer. When USB devices301 are plugged into the client, the remote VirtualBox server can access302 them.</para>295 <para>As a special feature on top of the Remote Desktop Extension, 296 VirtualBox supports remote USB devices over the wire as well. That is, 297 the VirtualBox guest that runs on one computer can access the USB 298 devices of the remote computer on which the RDP data is being displayed 299 the same way as USB devices that are connected to the actual host. This 300 allows for running virtual machines on a VirtualBox host that acts as a 301 server, where a client can connect from elsewhere that needs only a 302 network adapter and a display capable of running an RDP viewer. When USB 303 devices are plugged into the client, the remote VirtualBox server can 304 access them.</para> 303 305 304 306 <para>For these remote USB devices, the same filter rules apply as for … … 378 380 user running the VM.</para> 379 381 </listitem> 380 382 381 383 <listitem> 382 384 <para>An additional library called 383 <computeroutput>VBoxAuthSimple</computeroutput> performs authentication 384 against credentials configured in the VM's extra data section. This is 385 probably the simplest way to get authentication that does not depend 386 on a running and supported guest (see below). In order to enable 387 VBoxAuthSimple, issue 388 <computeroutput>VBoxManage setproperty vrdeauthlibrary "VBoxAuthSimple"</computeroutput>. 389 To enable the library for a VM, switch authentication to external using 390 <computeroutput>VBoxManage modifyvm "VM name" --vrdeauthtype external</computeroutput>. 391 Last but not least, you have to configure users and passwords. Here is an example 392 for the user "john" with the password "secret": 393 <computeroutput>VBoxManage internalcommands passwordhash "secret"</computeroutput> 394 This will give you the hash value "2bb80d537b1da3e38bd30361aa855686bde0eacd7162fef6a25fe97bf527a25b" 395 which you set using 396 <computeroutput>VBoxManage setextradata "VM name" "VBoxAuthSimple/users/john" 397 "2bb80d537b1da3e38bd30361aa855686bde0eacd7162fef6a25fe97bf527a25b"</computeroutput>. 398 </para> 385 <computeroutput>VBoxAuthSimple</computeroutput> performs 386 authentication against credentials configured in the VM's extra 387 data section. This is probably the simplest way to get 388 authentication that does not depend on a running and supported 389 guest (see below). In order to enable VBoxAuthSimple, issue 390 <computeroutput>VBoxManage setproperty vrdeauthlibrary 391 "VBoxAuthSimple"</computeroutput>. To enable the library for a VM, 392 switch authentication to external using <computeroutput>VBoxManage 393 modifyvm "VM name" --vrdeauthtype external</computeroutput>. Last 394 but not least, you have to configure users and passwords. Here is 395 an example for the user "john" with the password "secret": 396 <computeroutput>VBoxManage internalcommands passwordhash 397 "secret"</computeroutput> This will give you the hash value 398 "2bb80d537b1da3e38bd30361aa855686bde0eacd7162fef6a25fe97bf527a25b" 399 which you set using <computeroutput>VBoxManage setextradata "VM 400 name" "VBoxAuthSimple/users/john" 401 "2bb80d537b1da3e38bd30361aa855686bde0eacd7162fef6a25fe97bf527a25b"</computeroutput>.</para> 399 402 </listitem> 400 403 … … 407 410 </listitem> 408 411 </itemizedlist></para> 409 410 411 412 VirtualBox provides a well-defined interface that allows you to write your413 own authentication module; see <xref linkend="vbox-authenticate-sdk" />414 412 413 <para>In addition to the methods described above, you can replace the 414 default "external authentication module with any other module. For this, 415 VirtualBox provides a well-defined interface that allows you to write 416 your own authentication module; see <xref 417 linkend="vbox-authenticate-sdk" /> for details.</para> 415 418 </sect2> 416 419 … … 460 463 461 464 <sect2 id="vrdp-multiconnection"> 462 <title>Multiple VRDP connections</title>465 <title>Multiple RDP connections</title> 463 466 464 467 <para>The built-in RDP server of VirtualBox supports simultaneous … … 468 471 computer at the same time, taking turns at the keyboard.</para> 469 472 470 <para>The following command enables multiple connection mode: <screen>VBoxManage modifyvm "VM name" --vrd pmulticon on</screen></para>473 <para>The following command enables multiple connection mode: <screen>VBoxManage modifyvm "VM name" --vrdemulticon on</screen></para> 471 474 </sect2> 472 475 … … 474 477 <title>Multiple remote monitors</title> 475 478 476 <para> 477 To access two or more remote VM displays you have to enable the478 VRDP multiconnection mode (see <xreflinkend="vrdp-multiconnection" />).</para>479 <para>To access two or more remote VM displays you have to enable the 480 RDP multiconnection mode (see <xref 481 linkend="vrdp-multiconnection" />).</para> 479 482 480 483 <para>The RDP client can select the virtual monitor number to connect to 481 using the <computeroutput>domain</computeroutput> logon parameter 482 (<computeroutput>-d</computeroutput>). If 483 the parameter ends with <computeroutput>@</computeroutput> followed by a 484 number, the VirtualBox RDP server interprets this number as the screen index. 485 The primary guest screen is selected with 486 <computeroutput>@1</computeroutput>, the first secondary screen is 487 <computeroutput>@2</computeroutput>, etc.</para> 484 using the <computeroutput>domain</computeroutput> logon parameter 485 (<computeroutput>-d</computeroutput>). If the parameter ends with 486 <computeroutput>@</computeroutput> followed by a number, the VirtualBox 487 RDP server interprets this number as the screen index. The primary guest 488 screen is selected with <computeroutput>@1</computeroutput>, the first 489 secondary screen is <computeroutput>@2</computeroutput>, etc.</para> 488 490 489 491 <para>The MS RDP6 client does not let you specify a separate domain … … 499 501 <title>VRDP video redirection</title> 500 502 501 <para>Starting with VirtualBox 3.2, the VRDP server can redirect video503 <para>Starting with VirtualBox 3.2, the RDP server can redirect video 502 504 streams from the guest to the RDP client. Video frames are compressed 503 505 using the JPEG algorithm allowing a higher compression ratio than … … 505 507 compression ratio by lowering the video quality.</para> 506 508 507 <para>Video streams in a guest are detected by the VRDP server509 <para>Video streams in a guest are detected by the RDP server 508 510 automatically as frequently updated rectangular areas. Therefore, this 509 511 method works with any guest operating system without having to install … … 515 517 updates.</para> 516 518 517 <para>The following command enables video redirection: <screen>VBoxManage modifyvm "VM name" --vrd pvideochannel on</screen></para>519 <para>The following command enables video redirection: <screen>VBoxManage modifyvm "VM name" --vrdevideochannel on</screen></para> 518 520 519 521 <para>The quality of the video is defined as a value from 10 to 100 … … 523 525 524 526 <sect2 id="vrdp-customization"> 525 <title>VRDP customization</title> 526 527 <para>Starting with VirtualBox 3.2.10, it is possible to disable display output, 528 mouse and keyboard input, audio, remote USB or clipboard in the VRDP server.</para> 529 530 <para>The following commands change corresponding server settings:</para> 527 <title>VRDE customization</title> 528 529 <para>Starting with VirtualBox 3.2.10, it is possible to disable display 530 output, mouse and keyboard input, audio, remote USB or clipboard in the 531 RDP server.</para> 532 533 <para>The following commands change corresponding server 534 settings:</para> 531 535 532 536 <screen>VBoxManage setextradata "VM name" "VRDP/Feature/Client/DisableDisplay" 1 … … 536 540 VBoxManage setextradata "VM name" "VRDP/Feature/Client/DisableClipboard" 1</screen> 537 541 538 <para>To reenable a feature use a similar command without the trailing 1. For example:539 <screen>VBoxManage setextradata "VM name" "VRDP/Feature/Client/DisableDisplay"</screen></para>542 <para>To reenable a feature use a similar command without the trailing 543 1. For example: <screen>VBoxManage setextradata "VM name" "VRDP/Feature/Client/DisableDisplay"</screen></para> 540 544 </sect2> 541 545 </sect1> -
trunk/doc/manual/en_US/user_Installation.xml
r34606 r34680 260 260 manager, requires both Qt and SDL; 261 261 <computeroutput>VBoxSDL</computeroutput>, our simplified GUI, requires 262 only SDL. By contrast, if you only want to run the headless VRDP263 server that comes with VirtualBox, neither Qt nor SDL are262 only SDL. By contrast, if you only want to run 263 <computeroutput>VBoxHeadless</computeroutput>, neither Qt nor SDL are 264 264 required.</para> 265 265 </note> -
trunk/doc/manual/en_US/user_Introduction.xml
r34606 r34680 120 120 VirtualBox was installed. There are versions of VirtualBox for 121 121 Windows, Mac OS X, Linux and Solaris hosts; for details, please see 122 <xref linkend="hostossupport" />. 122 <xref linkend="hostossupport" />.</para> 123 123 124 124 <para>Most of the time, this User Manual discusses all VirtualBox … … 346 346 remote access to any running virtual machine. This extension supports 347 347 the Remote Desktop Protocol (RDP) originally built into Microsoft 348 Windows, with special additions for full client USB support. 348 Windows, with special additions for full client USB support.</para> 349 349 350 350 <para>The VRDE does not rely on the RDP server that is built into … … 502 502 </sect1> 503 503 504 <sect1 id="intro-installing"> 505 <title>Installing VirtualBox</title> 506 507 <para>VirtualBox comes in many different packages, and installation 508 depends on your host platform. If you have installed software before, 509 installation should be straightforward: on each host platform, VirtualBox 510 uses the installation method that is most common and easy to use. If you 511 run into trouble or have special requirements, please refer to <xref 512 linkend="installation" /> for details about the various installation 513 methods.</para> 514 515 <para>Starting with version 4.0, VirtualBox is split into several 516 components for licensing reasons.<orderedlist> 517 <listitem> 518 <para>The base package consists of all open source compenents and is 519 entirely licensed under the GNU General Public License V2.</para> 520 </listitem> 521 522 <listitem> 523 <para>Additional extension packs can be downloaded which extend the 524 functionality of the VirtualBox base package. Currently, Oracle 525 provides the following extension packs, which can be found at <ulink 526 url="http://www.virtualbox.org">http://www.virtualbox.org</ulink>:<orderedlist> 527 <listitem> 528 <para>The virtual USB 2.0 (EHCI) device; see <xref 529 linkend="settings-usb" />.</para> 530 </listitem> 531 532 <listitem> 533 <para>The VirtualBox Remote Desktop Extension (VRDE); see 534 <xref linkend="vrde" />.</para> 535 </listitem> 536 </orderedlist></para> 537 538 <para>VirtualBox extension packages have a 539 <computeroutput>.vbox-ext</computeroutput> file name extension. To 540 install an extension, simply double-click on package file, and the 541 VirtualBox Manager will guide you through the required steps.</para> 542 </listitem> 543 </orderedlist></para> 544 </sect1> 545 504 546 <sect1> 505 <title>Installing and starting VirtualBox</title> 506 507 <para>VirtualBox comes in many different packages, and <emphasis 508 role="bold">installation</emphasis> depends on your host platform. If you 509 have installed software before, installation should be straightforward: on 510 each host platform, VirtualBox uses the installation method that is most 511 common and easy to use. If you run into trouble or have special 512 requirements, please refer to <xref linkend="installation" /> for details 513 about the various installation methods.</para> 547 <title>Starting VirtualBox</title> 514 548 515 549 <para>After installation, you can start VirtualBox as … … 670 704 <listitem> 671 705 <para>You can pick an <emphasis 672 role="bold">existing</emphasis> disk image file. 706 role="bold">existing</emphasis> disk image file.</para> 673 707 674 708 <para>The <emphasis role="bold">drop-down list</emphasis> … … 676 710 currently remembered by VirtualBox, probably because they are 677 711 currently attached to a virtual machine (or have been in the 678 past). 712 past).</para> 679 713 680 714 <para>Alternatively, you can click on the small <emphasis … … 685 719 </itemizedlist>Most probably, if you are using VirtualBox for the 686 720 first time, you will want to create a new disk image. Hence, press 687 the "New" button. 721 the "New" button.</para> 688 722 689 723 <para>This brings up another window, the <emphasis … … 745 779 <title>Running your virtual machine</title> 746 780 747 <para>To start a virtual machine, simply double-click on its entry in the 748 list within the Manger window, or select it and press the "Start" button 749 at the top.</para> 781 <para>To start a virtual machine, you have several options:<itemizedlist> 782 <listitem> 783 <para>Double-click on its entry in the list within the Manager 784 window or</para> 785 </listitem> 786 787 <listitem> 788 <para>select its entry in the list in the Manager window it and 789 press the "Start" button at the top or</para> 790 </listitem> 791 792 <listitem> 793 <para>for virtual machines created with VirtualBox 4.0 or later, 794 navigate to the "VirtualBox VMs" folder in your system user's home 795 directory, find the subdirectory of the machine you want to start 796 and double-click on the machine settings file (with a 797 <computeroutput>.vbox</computeroutput> file extension).</para> 798 </listitem> 799 </itemizedlist></para> 750 800 751 801 <para>This opens up a new window, and the virtual machine which you … … 1030 1080 <para><emphasis role="bold">Save the machine state:</emphasis> With 1031 1081 this option, VirtualBox "freezes" the virtual machine by completely 1032 saving its state to your local disk. 1082 saving its state to your local disk.</para> 1033 1083 1034 1084 <para>When you start the VM again later, you will find that the VM … … 1353 1403 1354 1404 <para>To <emphasis role="bold">import</emphasis> an appliance one of the 1355 above formats, select "File" -> "Import appliance" from the Manager 1356 window. In the file dialog that comes up, navigate to the file with either 1357 the <computeroutput>.ovf</computeroutput> or the 1405 above formats, simply double-click on the OVF/OVA file.<footnote> 1406 <para>Starting with version 4.0, VirtualBox creates file type 1407 associations for OVF and OVA files on your host operating 1408 system.</para> 1409 </footnote> Alternatively, select "File" -> "Import appliance" from 1410 the Manager window. In the file dialog that comes up, navigate to the file 1411 with either the <computeroutput>.ovf</computeroutput> or the 1358 1412 <computeroutput>.ova</computeroutput> file extension.</para> 1359 1413
Note:
See TracChangeset
for help on using the changeset viewer.