0728.html 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Running a Ubuntu VM in ProxMox VE</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Home Lab,Home Lab Ideas,Hypervisor,Install Guide,Self-Hosted,Ubuntu,VM,Virtual Machine,Virtualization,Linux,Proxmox,Proxmox Host,Proxmox VE,Proxmox Step By Step,Proxmox Tutorial,How To Install Ubuntu On Proxmox,How To Run Ubuntu On Proxmox VE,Ubuntu Virtual Machine,Ubuntu Proxmox VM,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Running a Ubuntu VM in ProxMox VE">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="05/23/2022 12:29:23 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>Running a Ubuntu VM in ProxMox VE</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <ol>
  26. <li>Log into the ProxMox web UI</li>
  27. <li>Select a storage from the left navigation pane to download the .iso to</li>
  28. <li>Select ISO Images in the left sub-navigation pane</li>
  29. <li>If running ProxMox 6, download the Ubuntu Desktop iso <a href="https://releases.ubuntu.com/20.04.4/ubuntu-20.04.4-desktop-amd64.iso" target="_blank">Download</a> and upload it to the ProxMox ISO image library</li>
  30. <li>If running ProxMox 7, click Download from URL and paste the download URL from above &gt; Click Query URL &gt; Click Download</li>
  31. <li>Right click the ProxMox node name &gt; Create VM</li>
  32. <li>Give the VM a unique ID and Name &gt; Next</li>
  33. <li>On the OS tab, Select the Ubuntu Desktop installation .iso file, leave the Type as Linux and the Version as 5.x - 2.6 Kernel &gt; Next</li>
  34. <li>Leave the defaults on the System tab &gt; Next</li>
  35. <li>On the Hard Disk tab, set the Disk size to 16 GiB or more &gt; Next</li>
  36. <li>On the CPU tab, set Cores to 2 or more and Type to host &gt; Next</li>
  37. <li>On the Memory tab, set the Memory to 4096 &gt; Next</li>
  38. <li>Leave the defaults on the Network tab &gt; Next</li>
  39. <li>Verify the summary and click Finish</li>
  40. <li>Right click the Ubuntu VM in the left navigation pane &gt; Start</li>
  41. <li>Click console in the left sub-navigation menu</li>
  42. <li>Press Ctrl+C to cancel the disk check</li>
  43. <li>When the install dialog displays click Install Ubuntu</li>
  44. <li>Select a keyboard layout &gt; Click Continue</li>
  45. <li>Uncheck Download updates while installing Ubuntu &gt; Click Continue</li>
  46. <li>Click Install Now</li>
  47. <li>Click Continue to write the changes to the disk</li>
  48. <li>Select a Region &gt; Click continue</li>
  49. <li>Enter a name, computer name, username and password &gt; Click Continue</li>
  50. <li>Wait while Ubuntu copies files and installs</li>
  51. <li>When prompted to Restart Now, Select Devices &gt; Optical Drives &gt; Remove disk from virtual drive</li>
  52. <li>Click Restart Now to complete the installation, the VM will reboot</li>
  53. <li>Login with the username and password created earlier in the process</li>
  54. <li>Select Skip &gt; Next &gt; Select No, Don&#39;t send system info &gt; Next &gt; Next &gt; Done</li>
  55. <li>Welcome to Ubuntu</li>
  56. </ol>
  57. <h2>Optional Steps</h2>
  58. <ol>
  59. <li>Launch a terminal window</li>
  60. <li>Run the following commands
  61. <div class="codeBlock"># update software repositories<br />
  62. sudo apt update<br />
  63. # install qemu guest agent<br />
  64. sudo apt install qemu-guest-agent -y<br />
  65. # enable and start the qemu-guest-agent service<br />
  66. sudo systemctl enable qemu-guest-agent --now</div>
  67. </li>
  68. </ol>
  69. </div>
  70. </div>
  71. </body>
  72. </html>