1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Importing a Virtual Machine OVA into ProxMox</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Importing a Virtual Machine OVA into ProxMox">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Importing a Virtual Machine OVA into ProxMox</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Log into ProxMox VE either via SSH or the web based shell</li>
- <li>Run the following commands to download the .ova and import it<br />
- <span style="font-size:12px;"><em>NOTE: in the example we are installing TurnKey Core</em></span>
- <div class="codeBlock"># make a working directory<br />
- mkdir ova_import && cd ova_import<br />
- # download the ova<br />
- wget -O TurnKey.ova https://laotzu.ftp.acc.umu.se/mirror/turnkeylinux/images/ova/turnkey-core-16.1-buster-amd64.ova<br />
- # extract the downloaded ova<br />
- tar xvf TurnKey.ova<br />
- # create a new vm from the ova<br />
- # usage<br />
- # qm importovf <unused vmid> <path to ova> <destination storage pool name> [OPTIONS]<br />
- qm importovf 300 ./turnkey-core-16.1-buster-amd64.ovf HDD_500GB --format qcow2</div>
- </li>
- <li>After the VM has been successfully imported, open a web browser and navigate to the ProxMox VE web UI</li>
- <li>Select the imported VM from the left navigation menu</li>
- <li>Review the imported VM details and tweak as needed</li>
- <li>Click the Start button in the top right of the screen</li>
- <li>Click the Console link to watch the boot process</li>
- <li>After confirming the imported VM is working, run the following command to clean up the downloaded ova data
- <div class="codeBlock">cd ..<br />
- rm ova_import/ -r</div>
- </li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|