<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Proxmox on The Home Lab</title><link>https://adamazl.github.io/homelab/tags/proxmox/</link><description>Recent content in Proxmox on The Home Lab</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Sun, 15 Mar 2026 00:37:20 +1300</lastBuildDate><atom:link href="https://adamazl.github.io/homelab/tags/proxmox/index.xml" rel="self" type="application/rss+xml"/><item><title>Getting Started with Home Assistant</title><link>https://adamazl.github.io/homelab/posts/home-assistant-setup/</link><pubDate>Sun, 01 Mar 2026 00:00:00 +0000</pubDate><guid>https://adamazl.github.io/homelab/posts/home-assistant-setup/</guid><description>&lt;h2 id="why-home-assistant"&gt;Why Home Assistant?&lt;/h2&gt;
&lt;p&gt;Most smart home ecosystems (Google Home, Amazon Alexa, Apple HomeKit) are cloud-dependent. Your lights, locks, and sensors phone home to a server. If the company shuts down, changes their API, or has an outage, your devices stop working.&lt;/p&gt;
&lt;p&gt;Home Assistant is a local, open-source smart home platform. It runs on your network, integrates with over 3,000 services and devices, and keeps all automations local. Your automations run even when the internet is down.&lt;/p&gt;</description></item><item><title>Automated Backups with Proxmox Backup Server</title><link>https://adamazl.github.io/homelab/posts/proxmox-backup-server/</link><pubDate>Sat, 07 Feb 2026 00:00:00 +0000</pubDate><guid>https://adamazl.github.io/homelab/posts/proxmox-backup-server/</guid><description>&lt;h2 id="the-problem-with-ad-hoc-backups"&gt;The Problem with Ad-hoc Backups&lt;/h2&gt;
&lt;p&gt;Proxmox VE has built-in backup functionality — you can snapshot a VM to a directory or NFS share on a schedule. But it stores full backups each time, space grows fast, and restoring requires the whole archive. Proxmox Backup Server (PBS) solves all three problems.&lt;/p&gt;
&lt;p&gt;PBS is a dedicated backup server that:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Stores backups with &lt;strong&gt;client-side deduplication and compression&lt;/strong&gt; (typically 50–80% space savings)&lt;/li&gt;
&lt;li&gt;Does &lt;strong&gt;incremental backups&lt;/strong&gt; — only changed chunks are uploaded&lt;/li&gt;
&lt;li&gt;Supports &lt;strong&gt;instant verification&lt;/strong&gt; by recalculating checksums&lt;/li&gt;
&lt;li&gt;Has &lt;strong&gt;pruning policies&lt;/strong&gt; — keep 7 daily, 4 weekly, 12 monthly backups automatically&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="architecture"&gt;Architecture&lt;/h2&gt;
&lt;p&gt;PBS is a separate Debian-based appliance. It does not run inside Proxmox VE. You have a few options:&lt;/p&gt;</description></item><item><title>Docker vs LXC Containers in Proxmox: When to Use Each</title><link>https://adamazl.github.io/homelab/posts/docker-vs-lxc-proxmox/</link><pubDate>Sat, 27 Dec 2025 00:00:00 +0000</pubDate><guid>https://adamazl.github.io/homelab/posts/docker-vs-lxc-proxmox/</guid><description>&lt;h2 id="the-confusion"&gt;The Confusion&lt;/h2&gt;
&lt;p&gt;New Proxmox users often ask: should I run Docker inside a VM, Docker inside an LXC container, or use Proxmox&amp;rsquo;s native LXC containers directly? The answer depends on what you&amp;rsquo;re running and what you value. This post breaks down the trade-offs.&lt;/p&gt;
&lt;h2 id="what-is-lxc"&gt;What Is LXC?&lt;/h2&gt;
&lt;p&gt;LXC (Linux Containers) is an OS-level virtualisation technology. LXC containers share the host kernel but have their own filesystem, process tree, network stack, and user namespace. They boot like lightweight VMs — you run &lt;code&gt;pct start 101&lt;/code&gt; and get a full Linux environment in under a second.&lt;/p&gt;</description></item><item><title>Installing Proxmox VE</title><link>https://adamazl.github.io/homelab/posts/installing-proxmox/</link><pubDate>Sat, 13 Dec 2025 00:00:00 +0000</pubDate><guid>https://adamazl.github.io/homelab/posts/installing-proxmox/</guid><description>&lt;h2 id="what-is-proxmox-ve"&gt;What is Proxmox VE?&lt;/h2&gt;
&lt;p&gt;Proxmox Virtual Environment (VE) is a free, open-source hypervisor built on Debian. It supports both
KVM-based virtual machines and LXC containers, and comes with a decent web UI out of the box — no
need to pay for a VMware licence.&lt;/p&gt;
&lt;h2 id="hardware"&gt;Hardware&lt;/h2&gt;
&lt;p&gt;For this build I&amp;rsquo;m running Proxmox on two nodes:&lt;/p&gt;
&lt;table&gt;
 &lt;thead&gt;
 &lt;tr&gt;
 &lt;th&gt;Node&lt;/th&gt;
 &lt;th&gt;CPU&lt;/th&gt;
 &lt;th&gt;RAM&lt;/th&gt;
 &lt;th&gt;Storage&lt;/th&gt;
 &lt;/tr&gt;
 &lt;/thead&gt;
 &lt;tbody&gt;
 &lt;tr&gt;
 &lt;td&gt;pve-01&lt;/td&gt;
 &lt;td&gt;Intel Core i5-12400&lt;/td&gt;
 &lt;td&gt;32 GB DDR4&lt;/td&gt;
 &lt;td&gt;500 GB NVMe (OS) + 2 TB SSD (VMs)&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;pve-02&lt;/td&gt;
 &lt;td&gt;Intel Core i5-10400&lt;/td&gt;
 &lt;td&gt;16 GB DDR4&lt;/td&gt;
 &lt;td&gt;256 GB NVMe (OS) + 1 TB SSD (VMs)&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="downloading-the-iso"&gt;Downloading the ISO&lt;/h2&gt;
&lt;p&gt;Head to the &lt;a href="https://www.proxmox.com/en/downloads"&gt;Proxmox downloads page&lt;/a&gt; and grab the latest
&lt;strong&gt;Proxmox VE ISO Installer&lt;/strong&gt;. At the time of writing that was 8.x.&lt;/p&gt;</description></item></channel></rss>