<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: LK Wood IV</title>
    <description>The latest articles on DEV Community by LK Wood IV (@techfuelhq).</description>
    <link>https://dev.to/techfuelhq</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4014612%2F6b8d19db-7873-49d5-9743-2335021740ac.jpg</url>
      <title>DEV Community: LK Wood IV</title>
      <link>https://dev.to/techfuelhq</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/techfuelhq"/>
    <language>en</language>
    <item>
      <title>How to Install Proxmox VE (2026): Install + Update Reference</title>
      <dc:creator>LK Wood IV</dc:creator>
      <pubDate>Sat, 04 Jul 2026 16:35:39 +0000</pubDate>
      <link>https://dev.to/techfuelhq/how-to-install-proxmox-ve-2026-install-update-reference-2ak8</link>
      <guid>https://dev.to/techfuelhq/how-to-install-proxmox-ve-2026-install-update-reference-2ak8</guid>
      <description>&lt;p&gt;Installing Proxmox VE is genuinely easy. The graphical installer is a few screens, and it writes itself to disk in a couple of minutes. What trips people up is not the install itself: it is the first fifteen minutes afterward, where a default install points at a repository you cannot use without paying, and the longer-term question of how you keep the thing updated once it is running.&lt;/p&gt;

&lt;p&gt;This is the generic reference for both. It is hardware-agnostic on purpose: the steps below apply to a mini PC, a used office desktop, an old gaming rig, or a rack server. If you want a hands-on, click-by-click walkthrough on a specific small box, the &lt;a href="https://techfuelhq.com/articles/proxmox-mini-pc-setup/" rel="noopener noreferrer"&gt;Proxmox mini PC setup guide&lt;/a&gt; is the hardware-specific companion to this one. If you are still choosing hardware, start with the &lt;a href="https://techfuelhq.com/homelab/proxmox-hardware-requirements-2026/" rel="noopener noreferrer"&gt;Proxmox hardware requirements&lt;/a&gt;. And if you already run VE 8 and want to jump to VE 9, that is a different, planned operation covered in the &lt;a href="https://techfuelhq.com/tutorials/proxmox-ve-8-to-9-upgrade-2026/" rel="noopener noreferrer"&gt;8-to-9 upgrade gotchas&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Everything below is cited to the official Proxmox documentation. The current release as of this writing is Proxmox VE 9.2-1 (released May 21, 2026), built on Debian 13 "Trixie." If a command or file path is here, it is real and current for VE 9.&lt;/p&gt;

&lt;h2&gt;
  
  
  Part 1: The clean install (any hardware)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Step 1: Download and verify the ISO
&lt;/h3&gt;

&lt;p&gt;Grab the latest Proxmox VE ISO from the &lt;a href="https://www.proxmox.com/en/downloads/proxmox-virtual-environment/iso" rel="noopener noreferrer"&gt;official downloads page&lt;/a&gt;. As of June 2026 that is the VE 9.2-1 installer, about 1.7 GB.&lt;/p&gt;

&lt;p&gt;Do not skip the checksum. The download page publishes a SHA256 value next to the ISO. After downloading, compute the hash and compare it to that published value:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Linux / macOS&lt;/span&gt;
&lt;span class="nb"&gt;sha256sum &lt;/span&gt;proxmox-ve_9.2-1.iso

&lt;span class="c"&gt;# Windows (PowerShell)&lt;/span&gt;
Get-FileHash proxmox-ve_9.2-1.iso &lt;span class="nt"&gt;-Algorithm&lt;/span&gt; SHA256
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If the two strings do not match, the download is corrupt or tampered with. Delete it and re-download. This takes ten seconds and it is the one verification step that matters before you write installation media.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 2: Write the USB installer
&lt;/h3&gt;

&lt;p&gt;A USB stick is the standard install medium. The tool depends on your OS, and the official guidance is specific about which ones work:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Linux:&lt;/strong&gt; use &lt;code&gt;dd&lt;/code&gt;. Identify the USB device first with &lt;code&gt;lsblk&lt;/code&gt;, then write with &lt;code&gt;dd bs=1M conv=fdatasync if=./proxmox-ve_9.2-1.iso of=/dev/XYZ&lt;/code&gt; (replace &lt;code&gt;/dev/XYZ&lt;/code&gt; with your actual USB device; getting this wrong overwrites the wrong disk).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Windows:&lt;/strong&gt; Etcher works with no configuration. Rufus also works, but you must select &lt;strong&gt;DD mode&lt;/strong&gt; when it prompts, not ISO mode.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;macOS:&lt;/strong&gt; convert the ISO to a raw image, then write it (see the official media-prep page for the exact &lt;code&gt;hdiutil&lt;/code&gt; and &lt;code&gt;dd&lt;/code&gt; sequence).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;One specific warning from the docs: do not use UNetbootin. It is incompatible with the Proxmox installer.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 3: Boot the installer and pick your filesystem
&lt;/h3&gt;

&lt;p&gt;Plug the USB into the target machine, power on, and bring up the boot menu (commonly F11, F12, or Del). Select the USB device, then choose &lt;strong&gt;Install Proxmox VE&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Two decisions matter. &lt;strong&gt;Target disk and filesystem:&lt;/strong&gt; select the SSD or NVMe you want Proxmox on, and be careful not to pick the USB installer drive by accident.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Filesystem&lt;/th&gt;
&lt;th&gt;When to choose it&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;ext4 (default)&lt;/td&gt;
&lt;td&gt;Single-disk machine. Simple, fast, reliable, uses an LVM-thin pool Proxmox manages natively. The right first-install answer.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ZFS&lt;/td&gt;
&lt;td&gt;Two or more drives and you want a mirror or RAID-Z, plus snapshots, checksums, and self-healing. Wants meaningful RAM for its cache.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;XFS&lt;/td&gt;
&lt;td&gt;Offered with LVM, but far less common in Proxmox setups than ext4.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Btrfs&lt;/td&gt;
&lt;td&gt;A technology preview. Not recommended for a production-style install yet.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The official installer note is blunt that ZFS on top of any hardware RAID is unsupported and can cause data loss, so if you run ZFS, give it the raw disks. For a first build on one drive, choose ext4 and move on.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Network and password:&lt;/strong&gt; set a hostname, then set a static IP outside your DHCP range so the web UI always lives at the same address. Set a strong root password. The installer builds a Linux bridge called &lt;code&gt;vmbr0&lt;/code&gt; on your first NIC so VMs and containers can reach the network. Click install; it writes to disk in a few minutes and reboots.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 4: Reach the web interface
&lt;/h3&gt;

&lt;p&gt;Point a browser on another machine at the IP given during install, on port 8006:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://your-ip:8006
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Note the &lt;strong&gt;https&lt;/strong&gt; and the &lt;strong&gt;:8006&lt;/strong&gt;. Plain http or a missing port is the single most common "it didn't work" mistake, and the install is almost certainly fine. You will get a certificate warning because Proxmox uses a self-signed cert; accept it and log in as &lt;code&gt;root&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Part 2: The first fifteen minutes (the repository fix)
&lt;/h2&gt;

&lt;p&gt;This is the part generic install guides skip, and it is the one step every Proxmox install needs. A fresh install points apt at the &lt;strong&gt;enterprise repository&lt;/strong&gt;, which requires a paid subscription. Without a key, every &lt;code&gt;apt update&lt;/code&gt; ends in &lt;code&gt;401 Unauthorized&lt;/code&gt; and your package lists never refresh.&lt;/p&gt;

&lt;p&gt;Proxmox VE 9 also changed the repository file format to the deb822 &lt;code&gt;.sources&lt;/code&gt; format, so the files look nothing like the one-line &lt;code&gt;sources.list&lt;/code&gt; entries from VE 8.&lt;/p&gt;

&lt;h3&gt;
  
  
  Disable the enterprise repository
&lt;/h3&gt;

&lt;p&gt;Open the node shell (web UI, your node, Shell) and edit &lt;code&gt;/etc/apt/sources.list.d/pve-enterprise.sources&lt;/code&gt;, adding a single line so it reads &lt;code&gt;Enabled: no&lt;/code&gt;. That suppresses the enterprise repo without deleting it.&lt;/p&gt;

&lt;h3&gt;
  
  
  Enable the no-subscription repository
&lt;/h3&gt;

&lt;p&gt;Create the no-subscription sources file with the exact deb822 contents the docs publish for VE 9:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight properties"&gt;&lt;code&gt;&lt;span class="c"&gt;# /etc/apt/sources.list.d/proxmox.sources
&lt;/span&gt;&lt;span class="py"&gt;Types&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s"&gt;deb&lt;/span&gt;
&lt;span class="py"&gt;URIs&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s"&gt;http://download.proxmox.com/debian/pve&lt;/span&gt;
&lt;span class="py"&gt;Suites&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s"&gt;trixie&lt;/span&gt;
&lt;span class="py"&gt;Components&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s"&gt;pve-no-subscription&lt;/span&gt;
&lt;span class="py"&gt;Signed-By&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s"&gt;/usr/share/keyrings/proxmox-archive-keyring.gpg&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can do all of this from the web UI instead: node, &lt;strong&gt;Updates&lt;/strong&gt;, &lt;strong&gt;Repositories&lt;/strong&gt;, &lt;strong&gt;Add&lt;/strong&gt;, pick &lt;code&gt;No-Subscription&lt;/code&gt;, then highlight the enterprise row and click &lt;strong&gt;Disable&lt;/strong&gt;. The GUI writes the same files for you.&lt;/p&gt;

&lt;p&gt;The no-subscription repo ships the same packages as enterprise without a key. Proxmox is explicit that these are "not always as heavily tested and validated," so it is fine for a home lab but is not their recommendation for production.&lt;/p&gt;

&lt;h3&gt;
  
  
  Run the first update
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;apt update
apt full-upgrade
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Use &lt;code&gt;full-upgrade&lt;/code&gt;, not plain &lt;code&gt;upgrade&lt;/code&gt;, more on why in Part 3. Reboot if a new kernel was installed. The subscription-nag popup at login is cosmetic; click OK and move on.&lt;/p&gt;

&lt;h2&gt;
  
  
  Part 3: How to update Proxmox over time
&lt;/h2&gt;

&lt;p&gt;Once Proxmox is running, "update" means two very different things, and conflating them is where homelabs get into trouble.&lt;/p&gt;

&lt;h3&gt;
  
  
  Routine updates (within a major version)
&lt;/h3&gt;

&lt;p&gt;Normal maintenance, keeping VE 9 current as point releases ship (9.1 to 9.2). From the shell, &lt;code&gt;apt update&lt;/code&gt; then &lt;code&gt;apt full-upgrade&lt;/code&gt;; or in the web UI, select the node, open &lt;strong&gt;Updates&lt;/strong&gt;, &lt;strong&gt;Refresh&lt;/strong&gt;, then &lt;strong&gt;Upgrade&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Why &lt;code&gt;full-upgrade&lt;/code&gt; and not &lt;code&gt;apt upgrade&lt;/code&gt;? Plain &lt;code&gt;upgrade&lt;/code&gt; refuses to install anything that requires a new dependency, and on Proxmox that means the kernel and the &lt;code&gt;pve-manager&lt;/code&gt; stack get held back, exactly the packages you want updated. &lt;code&gt;full-upgrade&lt;/code&gt; installs them. A reboot is only needed when a new kernel arrives.&lt;/p&gt;

&lt;h3&gt;
  
  
  Major upgrades (across major versions)
&lt;/h3&gt;

&lt;p&gt;Moving from VE 8 to VE 9 is a different animal. It crosses to a new major version, which moves the underlying Debian base and kernel, and it carries real breaking changes: LVM autoactivation defaults change, network interfaces can be renamed, and PCI passthrough can need attention. That is a planned event with its own pre-flight checklist: back up first, run the &lt;code&gt;pve8to9 --full&lt;/code&gt; checker, pin your NIC names, and have console access that is not the web GUI. The full procedure is in the &lt;a href="https://techfuelhq.com/tutorials/proxmox-ve-8-to-9-upgrade-2026/" rel="noopener noreferrer"&gt;Proxmox VE 8 to 9 upgrade guide&lt;/a&gt;. VE 8.4 gets security and bug-fix updates until August 2026, so there is no pressure to rush.&lt;/p&gt;

&lt;h2&gt;
  
  
  Common install gotchas
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;apt update&lt;/code&gt; returns 401 Unauthorized.&lt;/strong&gt; You are still on the enterprise repository. Disable it and enable &lt;code&gt;pve-no-subscription&lt;/code&gt; (Part 2). This is the number-one new-user issue.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The web UI will not load.&lt;/strong&gt; You used &lt;code&gt;http&lt;/code&gt; instead of &lt;code&gt;https&lt;/code&gt;, or forgot &lt;code&gt;:8006&lt;/code&gt;. The correct URL is &lt;code&gt;https://your-ip:8006&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;VMs will not start ("KVM not available").&lt;/strong&gt; Hardware virtualization (Intel VT-x or AMD-V) is disabled in the BIOS/UEFI. Reboot into firmware and enable it, plus IOMMU (VT-d / AMD-Vi) if you plan passthrough.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You picked ZFS and the host feels short on RAM.&lt;/strong&gt; ZFS reserves RAM for its cache. Size it deliberately.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You accidentally installed onto the USB stick.&lt;/strong&gt; Always confirm the target disk in the installer is your internal SSD/NVMe.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  After the install: what to build
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;For a screen-by-screen walkthrough on a specific small machine, follow the &lt;a href="https://techfuelhq.com/articles/proxmox-mini-pc-setup/" rel="noopener noreferrer"&gt;Proxmox mini PC setup guide&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;For each service, decide between a container and a full VM. The &lt;a href="https://techfuelhq.com/homelab/lxc-vs-vm-proxmox-2026/" rel="noopener noreferrer"&gt;LXC vs VM in Proxmox guide&lt;/a&gt; has the decision tree.&lt;/li&gt;
&lt;li&gt;To size your box, how many VMs and containers your RAM and cores can support with ZFS overhead included, the &lt;a href="https://techfuelhq.com/tools/proxmox-capacity-planner/" rel="noopener noreferrer"&gt;Proxmox capacity planner&lt;/a&gt; does the math.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The install is the easy part. The repository fix is what makes updates work, and knowing the difference between a routine update and a major upgrade is what keeps the box healthy for years.&lt;/p&gt;

&lt;h2&gt;
  
  
  Sources
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://pve.proxmox.com/wiki/Package_Repositories" rel="noopener noreferrer"&gt;Proxmox VE Package Repositories&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://pve.proxmox.com/wiki/Installation" rel="noopener noreferrer"&gt;Proxmox VE Installation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://pve.proxmox.com/wiki/Prepare_Installation_Media" rel="noopener noreferrer"&gt;Proxmox VE: Prepare Installation Media&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.proxmox.com/en/downloads/proxmox-virtual-environment/iso" rel="noopener noreferrer"&gt;Proxmox VE downloads (ISO)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://pve.proxmox.com/wiki/Upgrade_from_8_to_9" rel="noopener noreferrer"&gt;Proxmox VE 8 to 9 Upgrade&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://techfuelhq.com/articles/how-to-install-proxmox-ve-2026/" rel="noopener noreferrer"&gt;techfuelhq.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>homelab</category>
      <category>proxmox</category>
      <category>selfhosted</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
