0867.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Running a Linux Mint 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,Linux Mint,VM,Virtual Machine,Virtualization,Linux,Proxmox,Proxmox Host,Proxmox VE,Proxmox Step By Step,Proxmox Tutorial,How To Install Linux Mint On Proxmox,How To Run Linux Mint On Proxmox VE,Linux Mint Virtual Machine,Linux Mint Proxmox VM,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Running a Linux Mint VM in ProxMox VE">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="01/03/2023 02:55:38 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 Linux Mint 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 Linux Mint 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 Linux Mint 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 Linux Mint VM in the left navigation pane &gt; Start</li>
  40. <li>Click console in the left sub-navigation menu</li>
  41. <li>Press Enter to Start Linux Mint (or wait 10 seconds)</li>
  42. <li>Double click the Install Linux Mint icon on the desktop</li>
  43. <li>Select a language &gt; Click Continue</li>
  44. <li>Select a keyboard layout &gt; Click Continue</li>
  45. <li>Choose whether or not to install multimedia codecs &gt; Click Continue</li>
  46. <li>Click Install Now then Continue to confirm the partitions</li>
  47. <li>Select a Region &gt; Click continue</li>
  48. <li>Enter a name, computer name, username and password &gt; Click Continue</li>
  49. <li>Wait while Linux Mint copies files and installs</li>
  50. <li>When prompted to Restart, click Restart Now to complete the installation, the VM will reboot</li>
  51. <li>When prompted to remove the installation medium, 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>
  52. <li>Select Options from the left sub-navigation menu</li>
  53. <li>Double click QEMU Guest Agent &gt; Check the Use QEMU Guest Agent box &gt; Click OK</li>
  54. <li>Right click the Linux Mint VM in the left navigation pane &gt; Start</li>
  55. <li>Click console in the left sub-navigation menu</li>
  56. <li>Press Enter at the remove installation medium prompt to continue the boot process</li>
  57. <li>Login with the username and password created earlier in the process</li>
  58. <li>Welcome to Linux Mint</li>
  59. </ol>
  60. <h2>Optional Steps</h2>
  61. <ol>
  62. <li>Launch a terminal window</li>
  63. <li>Run the following commands
  64. <div class="codeBlock"># update software repositories<br />
  65. sudo apt update<br />
  66. # install qemu guest agent<br />
  67. sudo apt install qemu-guest-agent -y</div>
  68. </li>
  69. </ol> </div>
  70. </div>
  71. </body>
  72. </html>