0191.html 5.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Running a Debian 12 Bookworm 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,Debian,VM,Virtual Machine,Virtualization,Linux,Proxmox,Proxmox Host,Proxmox VE,Proxmox Step By Step,Proxmox Tutorial,How To Install Debian On Proxmox,How To Run Debian On Proxmox VE,Debian Virtual Machine,Debian Proxmox VM,Debian 12,Debian Linux,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Running a Debian 12 Bookworm VM in Proxmox VE">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="07/25/2023 06:33:18 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>Running a Debian 12 Bookworm 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 Debian 12 iso <a href="https://cdimage.debian.org/cdimage/bookworm_di_alpha2/amd64/iso-dvd/" 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 Debian 12 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 Debian 12 VM in the left navigation pane &gt; Start</li>
  41. <li>Click console in the left sub-navigation menu</li>
  42. <li>When the install dialog displays press Enter to select Graphical Install</li>
  43. <li>Select a language &gt; Click Continue</li>
  44. <li>Select a Location &gt; Click Continue</li>
  45. <li>Select a keyboard layout &gt; Click Continue</li>
  46. <li>Enter a hostname for the VM &gt; Click Continue</li>
  47. <li>Enter a Domain name or leave it empty &gt; Click Continue</li>
  48. <li>Leave the root password empty &gt; Click Continue</li>
  49. <li>Enter the full name for the new user &gt; Click Continue</li>
  50. <li>Enter the username for the new user &gt; Click Continue</li>
  51. <li>Enter and confirm a password for the new user &gt; Click Continue</li>
  52. <li>Select a timezone &gt; Click Continue</li>
  53. <li>Select Guided - user entire disk &gt; Click Continue</li>
  54. <li>Select the QEMU HARDDISK &gt; Click Continue</li>
  55. <li>Select All files in one partition &gt; Click Continue</li>
  56. <li>Select Finish partitioning and write changes to disk &gt; Click Continue</li>
  57. <li>Select Yes to confirm writing the changes &gt; Click Continue</li>
  58. <li>Wait for Debian to copy and install files</li>
  59. <li>When prompted, select Yes to enable a network apt mirror &gt; Click Continue</li>
  60. <li>Select a country to use for the apt mirror &gt; Click Continue</li>
  61. <li>Select a mirror from the list &gt; Click Continue</li>
  62. <li>Setup a HTTP proxy if necessary &gt; Click Continue</li>
  63. <li>Choose if you want to participate in package usage survey &gt; Click Continue</li>
  64. <li>Select the optional software to install &gt; Click Continue</li>
  65. <li>Select Yes to install GRUB &gt; Click Continue</li>
  66. <li>Select /dev/sda for the boot loader location &gt; Click Continue</li>
  67. <li>After the bootloader is installed select reboot to finish the installation</li>
  68. <li>Log in using the username and password created during the installation</li>
  69. <li>Welcome to Debian 12</li>
  70. </ol>
  71. <h2>Optional Steps</h2>
  72. <ol>
  73. <li>Launch a terminal window</li>
  74. <li>Run the following commands
  75. <div class="codeBlock"># update software repositories<br />
  76. sudo apt update<br />
  77. # install qemu guest agent<br />
  78. sudo apt install qemu-guest-agent -y<br />
  79. # enable and start the qemu-guest-agent service<br />
  80. sudo systemctl enable qemu-guest-agent --now</div>
  81. </li>
  82. <li>A subsequent reboot is required to complete the guest agent installation</li>
  83. </ol> </div>
  84. </div>
  85. </body>
  86. </html>