0868.html 4.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Running a Pop!_OS 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,Pop!_OS,VM,Virtual Machine,Virtualization,Linux,Proxmox,Proxmox Host,Proxmox VE,Proxmox Step By Step,Proxmox Tutorial,How To Install Pop!_OS On Proxmox,How To Run Pop!_OS On Proxmox VE,Pop!_OS Virtual Machine,Pop!_OS Proxmox VM,PopOS,PopOS!,Pop! OS,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Running a Pop!_OS VM in Proxmox VE">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="02/05/2023 09:11:09 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 Pop!_OS 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>Download the Pop!_OS iso <a href="https://linuxmint.com/download.php" style="font-size: inherit" target="_blank">Download</a> and upload it to the Proxmox ISO image library</li>
  30. <li>Right click the Proxmox node name &gt; Create VM</li>
  31. <li>Give the VM a unique ID and Name &gt; Next</li>
  32. <li>On the OS tab, Select the Pop!_OS installation .iso file, leave the Type as Linux and the Version as 5.x - 2.6 Kernel &gt; Next</li>
  33. <li>Leave the defaults on the System tab &gt; Next</li>
  34. <li>On the Hard Disk tab, set the Disk size to 30 GiB or more &gt; Next</li>
  35. <li>On the CPU tab, set Cores to 2 or more and Type to host &gt; Next</li>
  36. <li>On the Memory tab, set the Memory to 4096 &gt; Next</li>
  37. <li>Leave the defaults on the Network tab &gt; Next</li>
  38. <li>Verify the summary and click Finish</li>
  39. <li>Right click the Pop!_OS VM in the left navigation pane &gt; Start</li>
  40. <li>Click console in the left sub-navigation menu</li>
  41. <li>Install Pop!_OS should start automatically, if it does not, click the Activities button &gt; Search install &gt; Select Install Pop!_OS</li>
  42. <li>Choose a language &gt; Click Select &gt; Click Select</li>
  43. <li>Select a keyboard layout &gt; Click Select &gt; Click Select</li>
  44. <li>Click Clean Install &gt; Click Clean Install</li>
  45. <li>Select the QEMU HARDDISK &gt; Click Erase and Install</li>
  46. <li>Enter a full name and username &gt; Click Next</li>
  47. <li>Enter and re-enter a password &gt; Click Next</li>
  48. <li>Click Don&#39;t Encrypt</li>
  49. <li>Wait while Pop! OS copies files and installs</li>
  50. <li>When the installation completes click Restart Device</li>
  51. <li>After the reboot, login using the username and password set earlier</li>
  52. <li>Select a dock preference &gt; Click Next</li>
  53. <li>Configure the Top Bar &gt; Click Next</li>
  54. <li>Click Next, Next, then Select an Appearance &gt; Click Next</li>
  55. <li>Choose to enable or disable Location Services &gt; Click Next</li>
  56. <li>Select a time zone &gt; Click Next</li>
  57. <li>Click Skip on the Connect Your Online Accounts screen</li>
  58. <li>Click Start Using Pop!_OS</li>
  59. <li>Welcome to Pop!_OS</li>
  60. </ol>
  61. <h2>Optional Steps</h2>
  62. <ol>
  63. <li>Launch a terminal window</li>
  64. <li>Run the following commands
  65. <div class="codeBlock"># update software repositories<br />
  66. sudo apt update<br />
  67. # install qemu guest agent<br />
  68. sudo apt install qemu-guest-agent -y<br />
  69. # shutdown to complete setting up qemu guest agent<br />
  70. sudo shutdown now</div>
  71. </li>
  72. <li>Back in the Proxmox web UI, select Hardware from the left sub-navigation menu &gt; Double click the CD/DVD drive &gt; Select Do not use any media &gt; Click OK</li>
  73. <li>Select Options from the left sub-navigation menu</li>
  74. <li>Double click QEMU Guest Agent &gt; Check the Use QEMU Guest Agent box &gt; Click OK</li>
  75. <li>Right click the Pop!_OS VM in the left navigation pane &gt; Start</li>
  76. <li>Click console in the left sub-navigation menu</li>
  77. </ol> </div>
  78. </div>
  79. </body>
  80. </html>