瀏覽代碼

0191: Running a Debian 12 Bookworm VM in Proxmox VE

i12bretro 1 年之前
父節點
當前提交
e96acaaa04
共有 1 個文件被更改,包括 89 次插入0 次删除
  1. 89 0
      0191.html

+ 89 - 0
0191.html

@@ -0,0 +1,89 @@
+    <!DOCTYPE html>
+    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
+      <head>
+        <title>Running a Debian 12 Bookworm VM in Proxmox VE</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+        <meta charset="UTF-8">
+        <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">
+        <meta name="author" content="i12bretro">
+        <meta name="description" content="Running a Debian 12 Bookworm VM in Proxmox VE">
+        <meta name="viewport" content="width=device-width, initial-scale=1.0">
+        <meta name="revised" content="07/25/2023 06:33:18 AM" />
+				          <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
+				  <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
+				        <script type="text/javascript" src="includes/js/steps.js"></script>
+        <link href="css/steps.css" rel="stylesheet" type="text/css" />
+      </head>
+      <body>
+        <div id="gridContainer">
+          <div class="topMargin"></div>
+          <div id="listName" class="topMargin">
+            <h1>Running a Debian 12 Bookworm VM in Proxmox VE</h1>
+          </div>
+          <div></div>
+          <div id="content">
+          <ol>
+	<li>Log into the Proxmox web UI</li>
+	<li>Select a storage from the left navigation pane to download the .iso to</li>
+	<li>Select ISO Images in the left sub-navigation pane</li>
+	<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>
+	<li>If running Proxmox 7, click Download from URL and paste the download URL from above &gt; Click Query URL &gt; Click Download</li>
+	<li>Right click the Proxmox node name &gt; Create VM</li>
+	<li>Give the VM a unique ID and Name &gt; Next</li>
+	<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>
+	<li>Leave the defaults on the System tab &gt; Next</li>
+	<li>On the Hard Disk tab, set the Disk size to 16 GiB or more &gt; Next</li>
+	<li>On the CPU tab, set Cores to 2 or more and Type to host &gt; Next</li>
+	<li>On the Memory tab, set the Memory to 4096 &gt; Next</li>
+	<li>Leave the defaults on the Network tab &gt; Next</li>
+	<li>Verify the summary and click Finish</li>
+	<li>Right click the Debian 12 VM in the left navigation pane &gt; Start</li>
+	<li>Click console in the left sub-navigation menu</li>
+	<li>When the install dialog displays press Enter to select Graphical Install</li>
+	<li>Select a language &gt; Click Continue</li>
+	<li>Select a Location &gt; Click Continue</li>
+	<li>Select a keyboard layout &gt; Click Continue</li>
+	<li>Enter a hostname for the VM &gt; Click Continue</li>
+	<li>Enter a Domain name or leave it empty &gt; Click Continue</li>
+	<li>Leave the root password empty &gt; Click Continue</li>
+	<li>Enter the full name for the new user &gt; Click Continue</li>
+	<li>Enter the username for the new user &gt; Click Continue</li>
+	<li>Enter and confirm a password for the new user &gt; Click Continue</li>
+	<li>Select a timezone &gt; Click Continue</li>
+	<li>Select Guided - user entire disk &gt; Click Continue</li>
+	<li>Select the QEMU HARDDISK &gt; Click Continue</li>
+	<li>Select All files in one partition &gt; Click Continue</li>
+	<li>Select Finish partitioning and write changes to disk &gt; Click Continue</li>
+	<li>Select Yes to confirm writing the changes &gt; Click Continue</li>
+	<li>Wait for Debian to copy and install files</li>
+	<li>When prompted, select Yes to enable a network apt mirror &gt; Click Continue</li>
+	<li>Select a country to use for the apt mirror &gt; Click Continue</li>
+	<li>Select a mirror from the list &gt; Click Continue</li>
+	<li>Setup a HTTP proxy if necessary &gt; Click Continue</li>
+	<li>Choose if you want to participate in package usage survey &gt; Click Continue</li>
+	<li>Select the optional software to install &gt; Click Continue</li>
+	<li>Select Yes to install GRUB &gt; Click Continue</li>
+	<li>Select /dev/sda for the boot loader location &gt; Click Continue</li>
+	<li>After the bootloader is installed select reboot to finish the installation</li>
+	<li>Log in using the username and password created during the installation</li>
+	<li>Welcome to Debian 12</li>
+</ol>
+
+<h2>Optional Steps</h2>
+
+<ol>
+	<li>Launch a terminal window</li>
+	<li>Run the following commands
+	<div class="codeBlock"># update software repositories<br />
+	sudo apt update<br />
+	# install qemu guest agent<br />
+	sudo apt install qemu-guest-agent -y<br />
+	# enable and start the qemu-guest-agent service<br />
+	sudo systemctl enable qemu-guest-agent --now</div>
+	</li>
+	<li>A subsequent reboot is required to complete the guest agent installation</li>
+</ol>          </div>
+        </div>
+      </body>
+    </html>
+