0699.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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,Home Lab,Home Lab Ideas,Self-Hosted,Virtualization,Virtual Machines,Virtual Disk Image,Virtual Disk,VMs,Raw Disk Image,Migrate VirtualBox VM To ESXi,Migrate VirtualBox VM To VMware,Convert VirtualBox VM To ESXi,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. <meta name="revised" content="05/13/2022 01:42:49 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Convert VirtualBox VM to VMware ESXi</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>Exporting the VirtualBox Disk(s)</h2>
  26. <ol>
  27. <li>On the VirtualBox host, launch VirtualBox</li>
  28. <li>Right click the VM to convert &gt; Settings</li>
  29. <li>Select Storage from the left navigation</li>
  30. <li>Click the virtual hard disk and copy the Location value for the full path of the disk to the clipboard</li>
  31. <li>Right click on the Start menu &gt; Run &gt; type cmd.exe &gt; Press Enter</li>
  32. <li>Enter the following commands in the command prompt
  33. <div class="codeBlock"># change directory to VirtualBox installation<br />
  34. cd %programfiles%\Oracle\VirtualBox<br />
  35. # convert the .vdi to .vmdk<br />
  36. VBoxManage clonemedium disk --format VMDK --variant Standard &quot;pasted\full\path\to.vdi&quot; &quot;pasted\full\path\to.vmdk&quot;</div>
  37. </li>
  38. </ol>
  39. <h2>Creating the ESXi Virtual Machine</h2>
  40. <ol>
  41. <li>Open a web browser and navigate to the VMware ESXi web UI</li>
  42. <li>Log into ESXi</li>
  43. <li>In the left navigation pane, right click on Virtual Machines &gt; Create/Register VM</li>
  44. <li>Select Create a new virtual machine &gt; Click Next</li>
  45. <li>Give the VM a name and set the Guest OS family &gt; Click Next</li>
  46. <li>Select the storage datastore to use &gt; Click Next</li>
  47. <li>Set the Memory to match the memory in the source VirtualBox VM</li>
  48. <li>Remove Hard disk 1 by clicking the X icon to the far right &gt; Click Next</li>
  49. <li>Review the summary provided and click Finish</li>
  50. <li>Click the new VM name to view th VM details</li>
  51. <li>Click the Edit link at the top of the page</li>
  52. <li>At the top of the dialog click Add hard disk &gt; Existing hard disk</li>
  53. <li>Browse to the appropriate datastore and find the folder containing the VM</li>
  54. <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>
  55. <li>After the upload completes, select the uploaded .vmdk file &gt; Click Select</li>
  56. <li>Click Save in the VM Edit settings dialog</li>
  57. <li>Test that the VM is functioning by clicking the Start button at the top of the VM details page</li>
  58. </ol>
  59. </div>
  60. </div>
  61. </body>
  62. </html>