0387.html 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Importing a Virtual Machine OVA into ProxMox</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Importing a Virtual Machine OVA into ProxMox">
  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>Importing a Virtual Machine OVA into ProxMox</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <ol>
  25. <li>Log into ProxMox VE either via SSH or the web based shell</li>
  26. <li>Run the following commands to download the .ova and import it<br />
  27. <span style="font-size:12px;"><em>NOTE: in the example we are installing TurnKey Core</em></span>
  28. <div class="codeBlock"># make a working directory<br />
  29. mkdir ova_import &amp;&amp; cd ova_import<br />
  30. # download the ova<br />
  31. wget -O TurnKey.ova https://laotzu.ftp.acc.umu.se/mirror/turnkeylinux/images/ova/turnkey-core-16.1-buster-amd64.ova<br />
  32. # extract the downloaded ova<br />
  33. tar xvf TurnKey.ova<br />
  34. # create a new vm from the ova<br />
  35. # usage<br />
  36. # qm importovf &lt;unused vmid&gt; &lt;path to ova&gt; &lt;destination storage pool name&gt; [OPTIONS]<br />
  37. qm importovf 300 ./turnkey-core-16.1-buster-amd64.ovf HDD_500GB --format qcow2</div>
  38. </li>
  39. <li>After the VM has been successfully imported, open a web browser and navigate to the ProxMox VE web UI</li>
  40. <li>Select the imported VM from the left navigation menu</li>
  41. <li>Review the imported VM details and tweak as needed</li>
  42. <li>Click the Start button in the top right of the screen</li>
  43. <li>Click the Console link to watch the boot process</li>
  44. <li>After confirming the imported VM is working, run the following command to clean up the downloaded ova data
  45. <div class="codeBlock">cd ..<br />
  46. rm ova_import/ -r</div>
  47. </li>
  48. </ol>
  49. </div>
  50. </div>
  51. </body>
  52. </html>