0699.html 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Convert VirtualBox VM to VMware ESXi</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Convert VirtualBox to ESXi,Migrate VirtualBox to ESXi,VirtualBox,VMware,ESXi,VSphere,Hypervisor,Virtual Machine,VM,Conversion,Convert,Migration,Migrate,.vdi,.vmdk,VMware ESXi,ESXi 6,ESXi 7,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Convert VirtualBox VM to VMware ESXi">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>Convert VirtualBox VM to VMware ESXi</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <h2>Exporting the VirtualBox Disk(s)</h2>
  25. <ol>
  26. <li>On the VirtualBox host, launch VirtualBox</li>
  27. <li>Right click the VM to convert &gt; Settings</li>
  28. <li>Select Storage from the left navigation</li>
  29. <li>Click the virtual hard disk and copy the Location value for the full path of the disk to the clipboard</li>
  30. <li>Right click on the Start menu &gt; Run &gt; type cmd.exe &gt; Press Enter</li>
  31. <li>Enter the following commands in the command prompt
  32. <div class="codeBlock"># change directory to VirtualBox installation<br />
  33. cd %programfiles%\Oracle\VirtualBox<br />
  34. # convert the .vdi to .vmdk<br />
  35. VBoxManage clonemedium disk --format VMDK --variant Standard &quot;pasted\full\path\to.vdi&quot; &quot;pasted\full\path\to.vmdk&quot;</div>
  36. </li>
  37. </ol>
  38. <h2>Creating the ESXi Virtual Machine</h2>
  39. <ol>
  40. <li>Open a web browser and navigate to the VMware ESXi web UI</li>
  41. <li>Log into ESXi</li>
  42. <li>In the left navigation pane, right click on Virtual Machines &gt; Create/Register VM</li>
  43. <li>Select Create a new virtual machine &gt; Click Next</li>
  44. <li>Give the VM a name and set the Guest OS family &gt; Click Next</li>
  45. <li>Select the storage datastore to use &gt; Click Next</li>
  46. <li>Set the Memory to match the memory in the source VirtualBox VM</li>
  47. <li>Remove Hard disk 1 by clicking the X icon to the far right &gt; Click Next</li>
  48. <li>Review the summary provided and click Finish</li>
  49. <li>Click the new VM name to view th VM details</li>
  50. <li>Click the Edit link at the top of the page</li>
  51. <li>At the top of the dialog click Add hard disk &gt; Existing hard disk</li>
  52. <li>Browse to the appropriate datastore and find the folder containing the VM</li>
  53. <li>Click the Upload button at the top left of the file browser window &gt; Browse to and select the exported .vmdk disk image</li>
  54. <li>After the upload completes, select the uploaded .vmdk file &gt; Click Select</li>
  55. <li>Click Save in the VM Edit settings dialog</li>
  56. <li>Test that the VM is functioning by clicking the Start button at the top of the VM details page</li>
  57. </ol>
  58. </div>
  59. </div>
  60. </body>
  61. </html>