0296.html 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Try Out ProxMox Virtual Environment in VirtualBox</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Hypervisor,Virtual Machines,VMs,ProxMox,ProxMox VE,Linux,VirtualBox,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Try Out ProxMox Virtual Environment in VirtualBox">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="06/05/2022 06:57:56 AM" />
  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>Try Out ProxMox Virtual Environment in VirtualBox</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <p>NOTE: This is a helpful exercise to get familiar with the ProxMox VE user interface and terminology&nbsp;but is not recommended for production use.&nbsp;</p>
  26. <ol>
  27. <li>Download the Proxmox VE .iso file <a href="https://www.proxmox.com/en/downloads" target="_blank">Download</a></li>
  28. <li>Launch Virtualbox</li>
  29. <li>Create a New VM by selecting Machine &gt; New
  30. <p>Name: ProxMox VE<br />
  31. Machine Folder: C:\VMs<br />
  32. Type: Linux<br />
  33. Version: Debian (64-bit)<br />
  34. Memory Size: 8192 MB<br />
  35. Hard disk: Create a virtual hard disk now</p>
  36. </li>
  37. <li>Click Create</li>
  38. <li>On the Create Virtual Hard Disk dialog
  39. <p>Name the virtual disk image ProxMox VE.vdi<br />
  40. File size: 16 GB<br />
  41. Hard disk file type: VDI<br />
  42. Storage on physical hard disk: Dynamically Allocated</p>
  43. </li>
  44. <li>Click Create</li>
  45. <li>Select the VM and Click Settings</li>
  46. <li>Select System &gt; Processor</li>
  47. <li>Give the VM at least 2 processors</li>
  48. <li>Check the Enable Nested VT-x/AMD-V</li>
  49. <li>Select Display</li>
  50. <li>Slide the Video Memory to 128 MB</li>
  51. <li>Select Network</li>
  52. <li>Set the attached to dropdown to Bridged Adapter</li>
  53. <li>Select Storage</li>
  54. <li>Click on the CD-ROM drive</li>
  55. <li>Select the disc dropdown to the right &gt; Choose a virtual optical disc file...</li>
  56. <li>Browse to and select the downloaded ProxMox VE&nbsp;.iso file</li>
  57. <li>Click OK</li>
  58. <li>Select the hard disk dropdown to the right</li>
  59. <li>Click the Create button at the top</li>
  60. <li>Change the size to 500 GB &gt; Click Create</li>
  61. <li>Click OK to accept the settings</li>
  62. <li>Make sure the ProxMox VE&nbsp;VM is selected and click Start &gt; Normal</li>
  63. <li>Select Install Proxmox VE and press Enter</li>
  64. <li>Click the I agree button to accept the EULA</li>
  65. <li>Select the appropriate Target Harddisk from the dropdown &gt; Click Next</li>
  66. <li>Set the Country, Time zone and Keyboard Layout &gt; Click Next</li>
  67. <li>Enter a password and confirm, Enter an email address &gt; Click Next</li>
  68. <li>Give the Proxmox device a hostname, confirm the network settings &gt; Click Next</li>
  69. <li>Click the Install button</li>
  70. <li>Wait for Proxmox to be installed and configured</li>
  71. <li>After the installation succeeds, take note of the IP address and port</li>
  72. <li>Select Devices &gt;&nbsp;Optical Drives &gt; Remove disk from virtual drive&nbsp;</li>
  73. <li>Click the Reboot button</li>
  74. <li>After the VM reboots, open a web browser on the host machine and navigate to&nbsp;https://DNSorIP:8006</li>
  75. <li>Login with the username root and the password set during the installation</li>
  76. <li>Welcome to ProxMox VE inside VirtualBox</li>
  77. </ol>
  78. <h2>Setting Up Additional VM Storage</h2>
  79. <ol>
  80. <li>Click the Shell button in the ProxMox VE web interface</li>
  81. <li>Enter the following commands to initialize the new disk
  82. <div class="codeBlock"># locate the device name&nbsp;for the new hard disk<br />
  83. fdisk -l<br />
  84. # sdb is the 500 GB .vdi created earlier, replace sdb if your hard disk has a different identifier<br />
  85. cfdisk /dev/sdb</div>
  86. </li>
  87. <li>Arrow over to New &gt; Press Enter</li>
  88. <li>Press Enter to accept the default partition size</li>
  89. <li>Press Enter to select Primary</li>
  90. <li>Arrow over to Write &gt; Press Enter</li>
  91. <li>Type yes &gt; Press Enter</li>
  92. <li>Arrow over to Quit &gt; Press Enter</li>
  93. <li>Back in the ProxMox web interface, select the Data Center &gt; Storage</li>
  94. <li>Click Add &gt; LVM</li>
  95. <li>Give the new storage a unique name, select pve for the storage group &gt; Click Add</li>
  96. <li>The additional storage should now be showing on the far left of the UI and be available for use for new VMs<br />
  97. &nbsp;</li>
  98. </ol>
  99. </div>
  100. </div>
  101. </body>
  102. </html>