Kaynağa Gözat

0713: Install and Run Proxmox on Laptop Hardware

i12bretro 3 yıl önce
ebeveyn
işleme
57f32ee4b5
1 değiştirilmiş dosya ile 128 ekleme ve 0 silme
  1. 128 0
      0713.html

+ 128 - 0
0713.html

@@ -0,0 +1,128 @@
+    <!DOCTYPE html>
+    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
+      <head>
+        <title>Install and Run Proxmox on Laptop Hardware</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+        <meta charset="UTF-8">
+        <meta name="keywords" content="How To Install Proxmox On A Laptop,How To Use Proxmox With A Laptop,Proxmox,Proxmox Tutorial,Proxmox Install,Virtualization,How To Install Proxmox,Proxmox Step By Step,Home Lab,Hypervisor,Self-Hosted,Proxmox VE,Linux,Debian,XFCE,Desktop Environment,How To Install Desktop With Proxmox,How To Install DE With Proxmox,How To Use XFCE With Proxmox,XFCE Proxmox Setup,Install Guide,How To,Tutorial,i12bretro">
+        <meta name="author" content="i12bretro">
+        <meta name="description" content="Install and Run Proxmox on Laptop Hardware">
+        <meta name="viewport" content="width=device-width, initial-scale=1.0">
+        <meta name="revised" content="03/22/2022 08:54:57 PM" />
+				          <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>Install and Run Proxmox on Laptop Hardware</h1>
+          </div>
+          <div></div>
+          <div id="content">
+          <h2>What is Proxmox VE?</h2>
+
+<blockquote><em>Proxmox VE is a complete, open-source server management platform for enterprise virtualization. It tightly integrates the KVM hypervisor and Linux Containers (LXC), software-defined storage and networking functionality, on a single platform. With the integrated web-based user interface you can manage VMs and containers, high availability for clusters, or the integrated disaster recovery tools with ease. -<a href="https://www.proxmox.com/en/proxmox-ve" target="_blank">https://www.proxmox.com/en/proxmox-ve</a></em></blockquote>
+
+<h2>The Hardware</h2>
+
+<p>The laptop I used in this video is an Asus G74Sx. It sports a 4 core/8 thread i7-2670QM @ 2.20 GHz, 16GB of DDR3 RAM, a Nvidia GeForce GTX 560M with 2GB of vRAM and a Kingston 120GB SSD.</p>
+
+<h2>Things You Will Need</h2>
+
+<ul>
+	<li>A USB flash drive, at least 8 GB <a href="https://amzn.to/3wkR5ju" target="_blank">https://amzn.to/3wkR5ju</a> | <a href="https://amzn.to/3qkrJ1p" target="_blank">https://amzn.to/3qkrJ1p</a> | <a href="https://amzn.to/3Nhu9b9" target="_blank">https://amzn.to/3Nhu9b9</a></li>
+</ul>
+
+<h2>Preparing the Installation Media</h2>
+
+<ol>
+	<li>Download the Proxmox VE .iso file <a href="https://www.proxmox.com/en/downloads" target="_blank">Download</a></li>
+	<li>Download the Ventoy installer <a href="https://www.ventoy.net/en/download.html" target="_blank">Download</a></li>
+	<li>Extract the downloaded .zip file</li>
+	<li>Run Ventoy2Disk.exe</li>
+	<li>Plug in a USB flash drive at least 4 GB in size</li>
+	<li>Click the refresh icon</li>
+	<li>Select the flash drive from the device dropdown</li>
+	<li>Click the Install button</li>
+	<li>After the installation completes, copy the downloaded Proxmox VE .iso to the Ventoy partition</li>
+	<li>Safely remove the USB flash drive</li>
+	<li>Plug the flash drive into the target laptop and power it on</li>
+	<li>Boot to the flash drive</li>
+	<li>Select the Proxmox VE .iso from the Ventoy menu</li>
+</ol>
+
+<h2>Installation and Setup</h2>
+
+<ol>
+	<li>Select Install Proxmox VE and press Enter</li>
+	<li>Click the I agree button to accept the EULA</li>
+	<li>Select the appropriate Target Harddisk from the dropdown &gt; Click Next</li>
+	<li>Set the Country, Time zone and Keyboard Layout &gt; Click Next</li>
+	<li>Enter a password and confirm, Enter an email address &gt; Click Next</li>
+	<li>Give the Proxmox device a hostname, confirm the network settings &gt; Click Next</li>
+	<li>Click the Install button</li>
+	<li>Wait for Proxmox to be installed and configured</li>
+	<li>After the installation succeeds, take note of the IP address and port</li>
+	<li>Click the Reboot button</li>
+</ol>
+
+<h2>Installing a Desktop Environment</h2>
+
+<ol>
+	<li>Log back into Proxmox</li>
+	<li>Run the following commands
+	<div class="codeBlock CMD"># update software repositories<br />
+	apt update<br />
+	# install available software updates<br />
+	apt dist-upgrade -y<br />
+	# install xfce desktop environment<br />
+	apt install xfce4 chromium lightdm sudo -y<br />
+	# create a new user account<br />
+	adduser &lt;%username%&gt;<br />
+	# follow the prompts to set the user&#39;s password<br />
+	# add the new user to the sudo group<br />
+	usermod -aG sudo &lt;%username%&gt;<br />
+	# reboot<br />
+	reboot now</div>
+	</li>
+	<li>After the reboot, a graphical login screen should be displayed</li>
+	<li>Log in with the new user account</li>
+	<li>Launch the Chromium web browser and navigate to https://localhost:8006</li>
+	<li>Welcome to Proxmox VE running on laptop hardware</li>
+</ol>
+
+<h2>Optional Configuration</h2>
+
+<ol>
+	<li>Launch a terminal and run the following commands
+	<div class="codeBlock CMD"># elevate to root<br />
+	sudo su<br />
+	# disable proxmox commmercial repo<br />
+	sed -i &quot;s/^deb/\#deb/&quot; /etc/apt/sources.list.d/pve-enterprise.list<br />
+	# add the proxmox community repo<br />
+	echo &quot;deb http://download.proxmox.com/debian/pve $(grep &quot;VERSION=&quot; /etc/os-release | sed -n &#39;s/.*(\(.*\)).*/\1/p&#39;) pve-no-subscription&quot; &gt; /etc/apt/sources.list.d/pve-community.list<br />
+	# update software repositories<br />
+	apt update<br />
+	# remove no subscription nag popup<br />
+	# if running promox 6<br />
+	sed -i.bak &#39;s/NotFound/Active/g&#39; /usr/share/perl5/PVE/API2/Subscription.pm<br />
+	# if running proxmox 7<br />
+	sed -Ezi.bak &quot;s/(Ext.Msg.show\(\{\s+title: gettext\(&#39;No valid sub)/void\(\{ \/\/\1/g&quot; /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js<br />
+	# restart pveproxy service<br />
+	systemctl restart pveproxy.service<br />
+	# download the dark theme setup script<br />
+	wget https://raw.githubusercontent.com/Weilbyte/PVEDiscordDark/master/PVEDiscordDark.sh<br />
+	# run the downloaded script<br />
+	bash ./PVEDiscordDark.sh install</div>
+	</li>
+</ol>
+
+<p>Source: <a href="https://pve.proxmox.com/wiki/Developer_Workstations_with_Proxmox_VE_and_X11" target="_blank">https://pve.proxmox.com/wiki/Developer_Workstations_with_Proxmox_VE_and_X11</a></p>
+          </div>
+        </div>
+      </body>
+    </html>
+