<?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 homelab</title>
    <link>https://homelab.nbkelley.com/tags/proxmox/</link>
    <description>Recent content in Proxmox on homelab</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Fri, 01 May 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://homelab.nbkelley.com/tags/proxmox/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Gluetun VPN Service</title>
      <link>https://homelab.nbkelley.com/docs/services/gluetun-vpn/</link>
      <pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/services/gluetun-vpn/</guid>
      <description>&lt;h1 id=&#34;gluetun-vpn-service&#34;&gt;Gluetun VPN Service&lt;a class=&#34;anchor&#34; href=&#34;#gluetun-vpn-service&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Gluetun&lt;/strong&gt; is a lightweight Docker container acting as a dedicated VPN gateway for other containers.&lt;/li&gt;&#xA;&lt;li&gt;Implements the &lt;strong&gt;sidecar pattern&lt;/strong&gt;: dependent containers (e.g., qBittorrent, nzbget, prowlarr) share Gluetun&amp;rsquo;s network namespace via &lt;code&gt;network_mode: &amp;quot;service:gluetun&amp;quot;&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;AirVPN selected as the provider over ProtonVPN/Mullvad due to superior port forwarding support required for P2P services.&lt;/li&gt;&#xA;&lt;li&gt;Container-level VPN on the servarr VM is architecturally separate from the network-level UniFi VPN on Helms Deep (VLAN 2).&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;deployment-context&#34;&gt;Deployment Context&lt;a class=&#34;anchor&#34; href=&#34;#deployment-context&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Gluetun runs on the &lt;strong&gt;servarr VM&lt;/strong&gt; (&lt;code&gt;192.168.1.112&lt;/code&gt;) as part of the Servarr Docker Compose stack at &lt;code&gt;/docker/servarr/&lt;/code&gt;. It is configured via &lt;code&gt;.env&lt;/code&gt; file in that directory.&lt;/p&gt;</description>
    </item>
    <item>
      <title>GPU Passthrough for Proxmox LXCs</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/gpu-passthrough-lxc/</link>
      <pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/gpu-passthrough-lxc/</guid>
      <description>&lt;h1 id=&#34;gpu-passthrough-for-proxmox-lxcs&#34;&gt;GPU Passthrough for Proxmox LXCs&lt;a class=&#34;anchor&#34; href=&#34;#gpu-passthrough-for-proxmox-lxcs&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Intel GPU passthrough to Proxmox LXCs requires both host-side module loading and specific LXC device mounts.&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;vainfo&lt;/code&gt; frequently fails with X11/X server errors in headless containers; this is expected and does not indicate a broken passthrough.&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;intel_gpu_top&lt;/code&gt; requires &lt;code&gt;i915&lt;/code&gt; module loaded on the host and accessible debugfs/sysfs paths inside the container.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;key-decisions&#34;&gt;Key Decisions&lt;a class=&#34;anchor&#34; href=&#34;#key-decisions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Headless VA-API Testing&lt;/strong&gt;: When &lt;code&gt;vainfo&lt;/code&gt; reports &lt;code&gt;error: can&#39;t connect to X server!&lt;/code&gt;, set environment variables to bypass X11:&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;export XDG_RUNTIME_DIR&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;/tmp/runtime-root&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;export LIBVA_DRIVER_NAME&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;iHD&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;vainfo&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Module Verification&lt;/strong&gt;: &lt;code&gt;lsmod | grep i915&lt;/code&gt; confirms the driver is loaded inside the container. Presence of &lt;code&gt;i915&lt;/code&gt;, &lt;code&gt;drm_buddy&lt;/code&gt;, &lt;code&gt;ttm&lt;/code&gt;, and &lt;code&gt;drm_display_helper&lt;/code&gt; indicates successful module injection.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Device Access&lt;/strong&gt;: &lt;code&gt;intel_gpu_top&lt;/code&gt; failing with &lt;code&gt;No device filter specified...&lt;/code&gt; typically points to missing debugfs mounts or host-side &lt;code&gt;i915&lt;/code&gt; parameters, not necessarily a broken &lt;code&gt;/dev/dri/&lt;/code&gt; passthrough.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;current-configuration&#34;&gt;Current Configuration&lt;a class=&#34;anchor&#34; href=&#34;#current-configuration&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;&lt;strong&gt;Proxmox LXC Config (&lt;code&gt;/etc/pve/lxc/&amp;lt;container-id&amp;gt;.conf&lt;/code&gt;)&lt;/strong&gt;:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Proxmox LXC Storage Mounts</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/proxmox-lxc-mounts/</link>
      <pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/proxmox-lxc-mounts/</guid>
      <description>&lt;h1 id=&#34;proxmox-lxc-storage-mounts&#34;&gt;Proxmox LXC Storage Mounts&lt;a class=&#34;anchor&#34; href=&#34;#proxmox-lxc-storage-mounts&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;SMB/CIFS shares can be integrated into Proxmox via CLI or the Web GUI.&lt;/li&gt;&#xA;&lt;li&gt;GUI integration is recommended for Proxmox-native features (backups, ISOs, templates) and automatic retention management.&lt;/li&gt;&#xA;&lt;li&gt;LXC containers can directly mount Proxmox storage paths using &lt;code&gt;mp0&lt;/code&gt;/&lt;code&gt;mp1&lt;/code&gt; directives in the container config file.&lt;/li&gt;&#xA;&lt;li&gt;Separate CIFS storages should be used for media vs. backups to maintain clean separation of concerns.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;key-decisions&#34;&gt;Key Decisions&lt;a class=&#34;anchor&#34; href=&#34;#key-decisions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Storage Content Types&lt;/strong&gt;: For media-only CIFS shares, select &lt;code&gt;Container templates&lt;/code&gt;, &lt;code&gt;ISO images&lt;/code&gt;, or &lt;code&gt;Disk image&lt;/code&gt;. Explicitly avoid &lt;code&gt;Containers&lt;/code&gt; and &lt;code&gt;VZDump backup file&lt;/code&gt; to prevent Proxmox from treating the media share as a system storage.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Subdirectory Configuration&lt;/strong&gt;: Leave the Proxmox storage subdirectory field blank to mount the root of the SMB share, enabling flexible navigation to specific subfolders (e.g., &lt;code&gt;Documents/Movies&lt;/code&gt;).&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Jellyfin Path Targeting&lt;/strong&gt;: Point Jellyfin directly to the specific media subfolder (e.g., &lt;code&gt;/media/synology/Documents/Movies&lt;/code&gt;) rather than the mount root.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;current-configuration&#34;&gt;Current Configuration&lt;a class=&#34;anchor&#34; href=&#34;#current-configuration&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;LXC Config Path&lt;/strong&gt;: &lt;code&gt;/etc/pve/lxc/&amp;lt;CT-ID&amp;gt;.conf&lt;/code&gt; (e.g., &lt;code&gt;/etc/pve/lxc/100.conf&lt;/code&gt;).&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Mount Syntax&lt;/strong&gt;: &lt;code&gt;mp0: /mnt/pve/&amp;lt;Storage-ID&amp;gt;,mp=/media/&amp;lt;mount-name&amp;gt;&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Permission Mapping&lt;/strong&gt; (for unprivileged containers):&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;lxc.idmap: u 0 100000 65536&#xA;lxc.idmap: g 0 100000 65536&#xA;lxc.idmap: u 1000 1000 1&#xA;lxc.idmap: g 1000 1000 1&#xA;lxc.idmap: u 1001 101001 64535&#xA;lxc.idmap: g 1001 101001 64535&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Jellyfin Setup&lt;/strong&gt;: Dashboard → Libraries → Add Media Library → Folders: &lt;code&gt;/media/synology/Documents/Movies&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;historical-notes&#34;&gt;Historical Notes&lt;a class=&#34;anchor&#34; href=&#34;#historical-notes&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Conversation date: 2025-11-07.&lt;/li&gt;&#xA;&lt;li&gt;Focuses on resolving LXC mount visibility and permission issues for Jellyfin on a Synology NAS.&lt;/li&gt;&#xA;&lt;li&gt;No major infrastructure changes flagged; patterns remain valid for Proxmox 8.x.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;open-questions&#34;&gt;Open Questions&lt;a class=&#34;anchor&#34; href=&#34;#open-questions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;None.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;related-pages&#34;&gt;Related Pages&lt;a class=&#34;anchor&#34; href=&#34;#related-pages&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://homelab.nbkelley.com/docs/services/servarr/&#34;&gt;Servarr - Media Automation Stack&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://homelab.nbkelley.com/docs/machines/vair%C3%AB/&#34;&gt;TrueNAS (Vairë) - Storage &amp;amp; Backup Server&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;sources&#34;&gt;Sources&lt;a class=&#34;anchor&#34; href=&#34;#sources&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;ingested/chats/092-Mount NAS Storage to LXC Containers.md&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;ingested/chats/091-Mount Synology SMB to Proxmox Guide.md&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;ingested/chats/090-Mount SMB Share on Proxmox Guide.md&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;DeepSeek conversation: Mount NAS Storage to LXC Containers (2025-11-07)&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;sources-1&#34;&gt;Sources&lt;a class=&#34;anchor&#34; href=&#34;#sources-1&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;ingested/chats/092-Mount NAS Storage to LXC Containers.md&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;ingested/chats/091-Mount Synology SMB to Proxmox Guide.md&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;ingested/chats/090-Mount SMB Share on Proxmox Guide.md&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;Historical DeepSeek conversation: &amp;ldquo;Mount SMB Share on Proxmox Guide&amp;rdquo; (2025-11-07)&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;related-pages-1&#34;&gt;Related Pages&lt;a class=&#34;anchor&#34; href=&#34;#related-pages-1&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://homelab.nbkelley.com/docs/infrastructure/proxmox-storage/&#34;&gt;Proxmox Storage Management&lt;/a&gt;, &lt;a href=&#34;https://homelab.nbkelley.com/docs/infrastructure/proxmox-systemd-mounts/&#34;&gt;Proxmox Systemd Mounts&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Proxmox NVMe Partition Management</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/proxmox-nvme-partitioning/</link>
      <pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/proxmox-nvme-partitioning/</guid>
      <description>&lt;h1 id=&#34;proxmox-nvme-partition-management&#34;&gt;Proxmox NVMe Partition Management&lt;a class=&#34;anchor&#34; href=&#34;#proxmox-nvme-partition-management&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Advanced manual partitioning strategy for separating OS and VM/Container data on a single NVMe drive.&lt;/li&gt;&#xA;&lt;li&gt;Recommended for test clusters where OS reinstalls are expected without risking data loss on the storage partition.&lt;/li&gt;&#xA;&lt;li&gt;Uses &lt;code&gt;sgdisk&lt;/code&gt; to create distinct partitions that Proxmox treats as independent storage targets.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;key-decisions&#34;&gt;Key Decisions&lt;a class=&#34;anchor&#34; href=&#34;#key-decisions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Partition Layout&lt;/strong&gt;: EFI (1GB), OS (~100GB), Data (remaining ~399GB).&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Tooling&lt;/strong&gt;: &lt;code&gt;sgdisk&lt;/code&gt; for GPT partitioning, &lt;code&gt;mkfs.ext4&lt;/code&gt;/&lt;code&gt;mkfs.fat&lt;/code&gt; for formatting, manual mounting for data.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Storage Integration&lt;/strong&gt;: Data partition mounted at &lt;code&gt;/mnt/data&lt;/code&gt; and added as a Directory storage in Proxmox.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;current-configuration&#34;&gt;Current Configuration&lt;a class=&#34;anchor&#34; href=&#34;#current-configuration&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Target Hardware&lt;/strong&gt;: 3x Laptops with 500GB NVMe drives.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Partition Scheme&lt;/strong&gt;:&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;/dev/nvme0n1p1&lt;/code&gt;: 1GB EFI System Partition (FAT32)&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;/dev/nvme0n1p2&lt;/code&gt;: ~100GB Proxmox OS (ext4)&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;/dev/nvme0n1p3&lt;/code&gt;: ~399GB VM/Container Data (ext4)&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Post-Install Mount&lt;/strong&gt;: Data partition mounted at &lt;code&gt;/mnt/data&lt;/code&gt; and auto-mounted via &lt;code&gt;/etc/fstab&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;historical-notes&#34;&gt;Historical Notes&lt;a class=&#34;anchor&#34; href=&#34;#historical-notes&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;As of 2026-02-28, the user opted for the &amp;ldquo;complex&amp;rdquo; manual partitioning approach over the installer&amp;rsquo;s built-in LVM/ZFS options to ensure OS and data appear as totally separate drives.&lt;/li&gt;&#xA;&lt;li&gt;This method requires dropping to a shell during installation and manually launching &lt;code&gt;proxinstall&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;open-questions&#34;&gt;Open Questions&lt;a class=&#34;anchor&#34; href=&#34;#open-questions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;How does this partitioning scheme interact with future ZFS pool expansions if the laptops are clustered?&lt;/li&gt;&#xA;&lt;li&gt;Are there specific &lt;code&gt;sgdisk&lt;/code&gt; flags needed for NVMe drives in UEFI mode?&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;related-pages&#34;&gt;Related Pages&lt;a class=&#34;anchor&#34; href=&#34;#related-pages&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://homelab.nbkelley.com/docs/infrastructure/proxmox-storage/&#34;&gt;Proxmox Storage Management&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://homelab.nbkelley.com/docs/infrastructure/proxmox-zfs/&#34;&gt;Proxmox ZFS Storage &amp;amp; Installation Patterns&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;Proxmox ZFS Storage Setup&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;sources&#34;&gt;Sources&lt;a class=&#34;anchor&#34; href=&#34;#sources&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;ingested/chats/013-Set Up Proxmox with LVM and ZFS.md&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;DeepSeek conversation: Proxmox OS and Storage Separation Guide (2026-02-28)&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
    </item>
    <item>
      <title>Proxmox Storage Management</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/proxmox-storage/</link>
      <pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/proxmox-storage/</guid>
      <description>&lt;h1 id=&#34;proxmox-storage-management&#34;&gt;Proxmox Storage Management&lt;a class=&#34;anchor&#34; href=&#34;#proxmox-storage-management&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;historical-true&#34;&gt;title: Proxmox Storage Management&#xA;version: 1.2&#xA;date: 2026-04-30&#xA;namespace: general&#xA;wiki: homelab&#xA;tags: [proxmox, storage, smb, cifs, zfs, backups]&#xA;changes: Crystallized from historical DeepSeek conversation&#xA;historical: true&lt;a class=&#34;anchor&#34; href=&#34;#historical-true&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h1 id=&#34;proxmox-storage-management-1&#34;&gt;Proxmox Storage Management&lt;a class=&#34;anchor&#34; href=&#34;#proxmox-storage-management-1&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;SMB/CIFS shares can be integrated into Proxmox via CLI or the Web GUI.&lt;/li&gt;&#xA;&lt;li&gt;GUI integration is recommended for Proxmox-native features (backups, ISOs, templates) and automatic retention management.&lt;/li&gt;&#xA;&lt;li&gt;Local disk inspection (e.g., &lt;code&gt;sda2&lt;/code&gt;) requires verifying mount status and filesystem type to avoid conflicts with active root partitions.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;cli-mounting-persistent&#34;&gt;CLI Mounting (Persistent)&lt;a class=&#34;anchor&#34; href=&#34;#cli-mounting-persistent&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Install utilities: &lt;code&gt;apt update &amp;amp;&amp;amp; apt install cifs-utils&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;Create credentials file: &lt;code&gt;/etc/smb-credentials&lt;/code&gt; with &lt;code&gt;chmod 600&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;Add to &lt;code&gt;/etc/fstab&lt;/code&gt;:&#xA;&lt;code&gt;//server/share /mnt/smb-share cifs credentials=/etc/smb-credentials,uid=0,gid=0,file_mode=0660,dir_mode=0770,iocharset=utf8 0 0&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;Test mount: &lt;code&gt;mount -a&lt;/code&gt;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;gui-mounting-proxmox-native&#34;&gt;GUI Mounting (Proxmox Native)&lt;a class=&#34;anchor&#34; href=&#34;#gui-mounting-proxmox-native&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Navigate to &lt;strong&gt;Datacenter&lt;/strong&gt; → &lt;strong&gt;Storage&lt;/strong&gt; → &lt;strong&gt;Add&lt;/strong&gt; → &lt;strong&gt;SMB/CIFS&lt;/strong&gt;.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Required Fields&lt;/strong&gt;: ID, Server, Share, Username, Password.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Content Types&lt;/strong&gt; (select based on use case):&#xA;&lt;ul&gt;&#xA;&lt;li&gt;ISO images&lt;/li&gt;&#xA;&lt;li&gt;Container templates&lt;/li&gt;&#xA;&lt;li&gt;VZDump backup files&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Advanced Options&lt;/strong&gt;: Max Backups, Prune Backups, SMB Version (e.g., &lt;code&gt;3.0&lt;/code&gt;), Domain.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Verification&lt;/strong&gt;: Green checkmark in Storage list indicates active status. Use &amp;ldquo;Test Connection&amp;rdquo; if available.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;local-disk-inspection&#34;&gt;Local Disk Inspection&lt;a class=&#34;anchor&#34; href=&#34;#local-disk-inspection&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Check status: &lt;code&gt;lsblk&lt;/code&gt;, &lt;code&gt;blkid /dev/sda2&lt;/code&gt;, &lt;code&gt;mount | grep sda2&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;Mount temporarily: &lt;code&gt;mount /dev/sda2 /mnt/sda2&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;Inspect: &lt;code&gt;ls -la /mnt/sda2&lt;/code&gt;, &lt;code&gt;df -h&lt;/code&gt;, &lt;code&gt;du -sh /mnt/sda2/*&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Note&lt;/strong&gt;: &lt;code&gt;sda2&lt;/code&gt; is typically the root partition on Proxmox hosts; avoid modifying if already mounted at &lt;code&gt;/&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;open-questions&#34;&gt;Open Questions&lt;a class=&#34;anchor&#34; href=&#34;#open-questions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Specific purpose of &lt;code&gt;sda2&lt;/code&gt; on Isengard (192.168.1.69)? (Likely root, but verify with &lt;code&gt;lsblk&lt;/code&gt;/&lt;code&gt;blkid&lt;/code&gt;).&lt;/li&gt;&#xA;&lt;li&gt;SMB share usage for LonelyMountain (192.168.1.137) backups vs ISOs? (GUI method preferred for VZDump retention).&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;related-pages&#34;&gt;Related Pages&lt;a class=&#34;anchor&#34; href=&#34;#related-pages&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://homelab.nbkelley.com/docs/infrastructure/proxmox-systemd-mounts/&#34;&gt;Proxmox Systemd Mounts&lt;/a&gt; — systemd mount units for NAS shares&#xA;&lt;a href=&#34;https://homelab.nbkelley.com/docs/infrastructure/proxmox-lxc-mounts/&#34;&gt;Proxmox LXC Storage Mounts&lt;/a&gt; — LXC bind mounts and permission mapping&#xA;&lt;a href=&#34;https://homelab.nbkelley.com/docs/infrastructure/proxmox-zfs/&#34;&gt;Proxmox ZFS Storage &amp;amp; Installation Patterns&lt;/a&gt;&#xA;&lt;a href=&#34;https://homelab.nbkelley.com/docs/infrastructure/proxmox-nvme-partitioning/&#34;&gt;Proxmox NVMe Partition Management&lt;/a&gt;&#xA;&lt;a href=&#34;https://homelab.nbkelley.com/docs/machines/vair%C3%AB/&#34;&gt;TrueNAS (Vairë) - Storage &amp;amp; Backup Server&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Proxmox Systemd Mounts</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/proxmox-systemd-mounts/</link>
      <pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/proxmox-systemd-mounts/</guid>
      <description>&lt;h1 id=&#34;proxmox-systemd-mounts&#34;&gt;Proxmox Systemd Mounts&lt;a class=&#34;anchor&#34; href=&#34;#proxmox-systemd-mounts&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;SMB/CIFS shares can be integrated into Proxmox via CLI or the Web GUI.&lt;/li&gt;&#xA;&lt;li&gt;GUI integration is recommended for Proxmox-native features (backups, ISOs, templates) and automatic retention management.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;System-level mounts&lt;/strong&gt; (e.g., at &lt;code&gt;/media/synology&lt;/code&gt;) are distinct from Proxmox Storage and are used for general file operations accessible by the host OS.&lt;/li&gt;&#xA;&lt;li&gt;Proxmox automatically mounts SMB shares under &lt;code&gt;/mnt/pve/&amp;lt;storage_id&amp;gt;&lt;/code&gt; when configured via the GUI.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;key-decisions&#34;&gt;Key Decisions&lt;a class=&#34;anchor&#34; href=&#34;#key-decisions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Maintain both a Proxmox Storage entry (for VM disks/backups) and a system-level mount (for general file access).&lt;/li&gt;&#xA;&lt;li&gt;Extract credentials from &lt;code&gt;/etc/pve/storage.cfg&lt;/code&gt; to avoid hardcoding passwords in multiple places.&lt;/li&gt;&#xA;&lt;li&gt;Use &lt;code&gt;pvesm status&lt;/code&gt; to verify existing storage mounts and avoid conflicts.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;current-configuration&#34;&gt;Current Configuration&lt;a class=&#34;anchor&#34; href=&#34;#current-configuration&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Synology NAS (LonelyMountain)&lt;/strong&gt;: &lt;code&gt;192.168.1.137&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Proxmox Storage&lt;/strong&gt;: Configured via Datacenter &amp;gt; Storage (SMB/CIFS) for VM-related content.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;System Mount&lt;/strong&gt;: Targeted at &lt;code&gt;/media/synology&lt;/code&gt; for general file operations.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;system-level-mount-methods&#34;&gt;System-Level Mount Methods&lt;a class=&#34;anchor&#34; href=&#34;#system-level-mount-methods&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h3 id=&#34;1-extract-credentials--create-system-mount&#34;&gt;1. Extract Credentials &amp;amp; Create System Mount&lt;a class=&#34;anchor&#34; href=&#34;#1-extract-credentials--create-system-mount&#34;&gt;#&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Check existing Proxmox storage: &lt;code&gt;pvesm status&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;Extract server/share info from &lt;code&gt;/etc/pve/storage.cfg&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;Create credentials file:&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /root/.smbcredentials&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#75715e&#34;&gt;# Add: username=your_username, password=your_password&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;chmod &lt;span style=&#34;color:#ae81ff&#34;&gt;600&lt;/span&gt; /root/.smbcredentials&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/li&gt;&#xA;&lt;li&gt;Add to &lt;code&gt;/etc/fstab&lt;/code&gt;:&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;//192.168.1.137/share_name /media/synology cifs credentials=/root/.smbcredentials,uid=0,gid=0,file_mode=0660,dir_mode=0770,iocharset=utf8 0 0&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;&#xA;&lt;li&gt;Test: &lt;code&gt;mount -a&lt;/code&gt;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h3 id=&#34;2-systemd-mount-unit-recommended-for-robustness&#34;&gt;2. Systemd Mount Unit (Recommended for robustness)&lt;a class=&#34;anchor&#34; href=&#34;#2-systemd-mount-unit-recommended-for-robustness&#34;&gt;#&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;p&gt;Create &lt;code&gt;/etc/systemd/system/media-synology.mount&lt;/code&gt;:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Proxmox VM Boot Troubleshooting</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/proxmox-vm-boot-troubleshooting/</link>
      <pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/proxmox-vm-boot-troubleshooting/</guid>
      <description>&lt;h1 id=&#34;proxmox-vm-boot-troubleshooting&#34;&gt;Proxmox VM Boot Troubleshooting&lt;a class=&#34;anchor&#34; href=&#34;#proxmox-vm-boot-troubleshooting&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Ubuntu VMs can hang during the boot process at &lt;code&gt;apparmor.service&lt;/code&gt; (displayed as &amp;ldquo;staring apparmor.service - L:oad appArmor profiles&amp;hellip;&amp;rdquo;).&lt;/li&gt;&#xA;&lt;li&gt;In Proxmox, this specific hang was caused by an iGPU (&amp;hellip;)&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;coffee-lake-igpu-passthrough-freeze--recovery&#34;&gt;Coffee Lake iGPU Passthrough Freeze &amp;amp; Recovery&lt;a class=&#34;anchor&#34; href=&#34;#coffee-lake-igpu-passthrough-freeze--recovery&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Issue&lt;/strong&gt;: Coffee Lake iGPU passthrough to an Ubuntu VM causes the Proxmox VM to freeze on boot.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Immediate Recovery Steps&lt;/strong&gt; (run from Proxmox host console):&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&lt;strong&gt;Stop the frozen VM&lt;/strong&gt;: &lt;code&gt;qm stop &amp;lt;VMID&amp;gt; --force&lt;/code&gt; or &lt;code&gt;kill -9 &amp;lt;PID&amp;gt;&lt;/code&gt; via &lt;code&gt;ps aux | grep qemu&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Remove iGPU from VM config&lt;/strong&gt;: Edit &lt;code&gt;/etc/pve/qemu-server/&amp;lt;VMID&amp;gt;.conf&lt;/code&gt; and remove &lt;code&gt;hostpci&lt;/code&gt; lines and GPU-related &lt;code&gt;args:&lt;/code&gt; lines.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Reset host iGPU state&lt;/strong&gt;: Edit &lt;code&gt;/etc/modprobe.d/pve-blacklist.conf&lt;/code&gt; and comment out &lt;code&gt;blacklist i915&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Reboot host&lt;/strong&gt;: &lt;code&gt;update-initramfs -u -k all &amp;amp;&amp;amp; reboot&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Verify host recovery&lt;/strong&gt;: &lt;code&gt;lspci | grep -i vga&lt;/code&gt; and &lt;code&gt;lsmod | grep i915&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Proper Re-configuration Steps&lt;/strong&gt;:&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&lt;strong&gt;Enable IOMMU&lt;/strong&gt;: Update &lt;code&gt;/etc/default/grub&lt;/code&gt; with &lt;code&gt;GRUB_CMDLINE_LINUX_DEFAULT=&amp;quot;quiet intel_iommu=on iommu=pt&amp;quot;&lt;/code&gt;, then &lt;code&gt;update-grub &amp;amp;&amp;amp; reboot&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Verify IOMMU Groups&lt;/strong&gt;: &lt;code&gt;find /sys/kernel/iommu_groups/ -type l&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Add iGPU via UI&lt;/strong&gt;: VM → Hardware → Add PCI Device → Select iGPU → Check &amp;ldquo;All Functions&amp;rdquo; &amp;amp; &amp;ldquo;PCI-Express&amp;rdquo; → &lt;strong&gt;DO NOT&lt;/strong&gt; check &amp;ldquo;Primary GPU&amp;rdquo;.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Advanced/Alternative Configuration&lt;/strong&gt;:&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;GRUB Parameters&lt;/strong&gt;: &lt;code&gt;quiet intel_iommu=on iommu=pt pcie_acs_override=downstream,multifunction nofb nomodeset video=efifb:off&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Host Blacklist&lt;/strong&gt;: &lt;code&gt;echo &amp;quot;blacklist i915&amp;quot; &amp;gt;&amp;gt; /etc/modprobe.d/pve-blacklist.conf&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;VM Config (&lt;code&gt;args&lt;/code&gt;)&lt;/strong&gt;:&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;args: -device vfio-pci,host=00:02.0,addr=0x18,x-igd-gms=1,driver=vfio-pci&#xA;args: -device vfio-pci,host=00:02.1,addr=0x18.1,driver=vfio-pci&#xA;args: -global ICH9-LPC.acpi-pci-hotplug-with-bridge-support=off&#xA;args: -set device.vga.ramfb=off&#xA;args: -set device.vga.driver=vfio-pci&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;VM Hardware Requirements&lt;/strong&gt;: Machine &lt;code&gt;q35&lt;/code&gt;, BIOS &lt;code&gt;OVMF (UEFI)&lt;/code&gt;, Display &lt;code&gt;Default&lt;/code&gt; (not SPICE).&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Ubuntu VM Guest&lt;/strong&gt;: Install Intel graphics drivers, add &lt;code&gt;i915.enable_guc=2&lt;/code&gt; to kernel parameters, ensure early KMS start.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;sources&#34;&gt;Sources&lt;a class=&#34;anchor&#34; href=&#34;#sources&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;ingested/chats/103-Troubleshooting Coffee Lake iGPU Passthrough on Proxmox.md&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;ingested/chats/101-Troubleshooting Slow Ubuntu VM Boot.md&lt;/code&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
    </item>
    <item>
      <title>TrueNAS (Vairë) - Storage &amp; Backup Server</title>
      <link>https://homelab.nbkelley.com/docs/machines/vair%C3%AB/</link>
      <pubDate>Mon, 27 Apr 2026 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/machines/vair%C3%AB/</guid>
      <description>&lt;h1 id=&#34;truenas-vairë---storage--backup-server&#34;&gt;TrueNAS (Vairë) - Storage &amp;amp; Backup Server&lt;a class=&#34;anchor&#34; href=&#34;#truenas-vair%c3%ab---storage--backup-server&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;TrueNAS (Vairë) is deployed as a Proxmox VM to serve as the primary storage and backup server for the homelab. It handles ZFS storage pools, NFS/SMB shares for Proxmox and other VMs, and hosts Collabora Office in an iocage jail.&lt;/p&gt;&#xA;&lt;h2 id=&#34;key-decisions&#34;&gt;Key Decisions&lt;a class=&#34;anchor&#34; href=&#34;#key-decisions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;VM Type&lt;/strong&gt;: Q35 with UEFI firmware (recommended for ZFS stability).&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Resources&lt;/strong&gt;: 16 GiB RAM (fixed, no ballooning) and 2 vCPUs. 32 GB boot disk separate from storage.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Storage&lt;/strong&gt;: 4TB HDD passed through directly to the VM for ZFS data integrity and performance.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Backup Integration&lt;/strong&gt;: NFS share (&lt;code&gt;/mnt/tank/backups&lt;/code&gt;) configured for Proxmox backups. SMB share available for manual access.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Collabora Office&lt;/strong&gt;: Deployed in a dedicated iocage jail on port 9980.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;current-configuration&#34;&gt;Current Configuration&lt;a class=&#34;anchor&#34; href=&#34;#current-configuration&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Hostname&lt;/strong&gt;: Vairë&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;IP Address&lt;/strong&gt;: 192.168.1.100 (NFS) / 192.168.1.133 (SMB)&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Proxmox VM ID&lt;/strong&gt;: [Pending verification]&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;ZFS Pool&lt;/strong&gt;: &lt;code&gt;tank&lt;/code&gt; (4TB HDD passthrough)&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;NFS Share&lt;/strong&gt;: &lt;code&gt;/mnt/tank/backups&lt;/code&gt; (Network: 192.168.1.0/24, Maproot: root)&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;SMB Share&lt;/strong&gt;: &lt;code&gt;/mnt/tank/backups&lt;/code&gt; (Version 3.0)&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Collabora Jail&lt;/strong&gt;: iocage jail, port 9980&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;historical-notes&#34;&gt;Historical Notes&lt;a class=&#34;anchor&#34; href=&#34;#historical-notes&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;The conversation notes two different IPs for TrueNAS (192.168.1.100 and 192.168.1.133). Verify which IP is currently assigned to the TrueNAS VM.&lt;/li&gt;&#xA;&lt;li&gt;TrueNAS CORE uses iocage jails. Ensure jail templates are up to date.&lt;/li&gt;&#xA;&lt;li&gt;Proxmox backups to NFS require &lt;code&gt;hard,intr,noatime&lt;/code&gt; mount options in &lt;code&gt;/etc/fstab&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;open-questions&#34;&gt;Open Questions&lt;a class=&#34;anchor&#34; href=&#34;#open-questions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Which IP address is currently active for Vairë (192.168.1.100 or 192.168.1.133)?&lt;/li&gt;&#xA;&lt;li&gt;Is the 4TB HDD currently formatted as a ZFS pool on Vairë?&lt;/li&gt;&#xA;&lt;li&gt;Has Collabora Office been integrated with a Nextcloud instance?&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;related-pages&#34;&gt;Related Pages&lt;a class=&#34;anchor&#34; href=&#34;#related-pages&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://homelab.nbkelley.com/docs/infrastructure/proxmox-zfs/&#34;&gt;Proxmox ZFS Storage &amp;amp; Installation Patterns&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://homelab.nbkelley.com/docs/infrastructure/proxmox-zfs-setup/&#34;&gt;Proxmox ZFS Storage Setup&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://homelab.nbkelley.com/docs/infrastructure/network/&#34;&gt;Network Infrastructure &amp;amp; VLANs&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;sources&#34;&gt;Sources&lt;a class=&#34;anchor&#34; href=&#34;#sources&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;ingested/chats/032-TrueNas - Vairë.md&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;Historical DeepSeek conversation on TrueNAS VM setup and Proxmox integration.&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
    </item>
    <item>
      <title>Windows VM Installation Troubleshooting</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/windows-vm-installation/</link>
      <pubDate>Thu, 23 Apr 2026 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/windows-vm-installation/</guid>
      <description>&lt;h1 id=&#34;windows-vm-installation-troubleshooting&#34;&gt;Windows VM Installation Troubleshooting&lt;a class=&#34;anchor&#34; href=&#34;#windows-vm-installation-troubleshooting&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Troubleshooting guide for Windows installation when the local disk does not appear in the partitioning screen during setup.&lt;/p&gt;&#xA;&lt;h2 id=&#34;key-troubleshooting-steps&#34;&gt;Key Troubleshooting Steps&lt;a class=&#34;anchor&#34; href=&#34;#key-troubleshooting-steps&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;strong&gt;Check disk detection in BIOS/UEFI&lt;/strong&gt; — If the disk doesn&amp;rsquo;t appear in BIOS, it&amp;rsquo;s a hardware issue (loose cable, faulty drive, wrong SATA port).&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;strong&gt;Load storage drivers&lt;/strong&gt; — Modern NVMe/RAID controllers may need drivers loaded during setup via &lt;code&gt;Shift + F10&lt;/code&gt; → &amp;ldquo;Load Driver&amp;rdquo;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Proxmox ZFS Storage Setup</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/proxmox-zfs-setup/</link>
      <pubDate>Wed, 26 Mar 2025 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/proxmox-zfs-setup/</guid>
      <description>&lt;h1 id=&#34;proxmox-zfs-storage-setup&#34;&gt;Proxmox ZFS Storage Setup&lt;a class=&#34;anchor&#34; href=&#34;#proxmox-zfs-storage-setup&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Procedures for initializing ZFS pools using multiple drives via the Proxmox Web GUI and configuring them as usable storage for Virtual Machines (VMs) and Linux Containers (LXC).&lt;/p&gt;&#xA;&lt;h2 id=&#34;key-decisions&#34;&gt;Key Decisions&lt;a class=&#34;anchor&#34; href=&#34;#key-decisions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;RAID Levels&lt;/strong&gt;: Selection depends on the number of disks and redundancy requirements:&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Stripe (RAID 0)&lt;/strong&gt;: Maximum capacity, no redundancy.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Mirror (RAID 1)&lt;/strong&gt;: Redundancy, 50% capacity loss.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;RAID-Z1/Z2&lt;/strong&gt;: Requires 3+ disks for parity-based redundancy.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Compression&lt;/strong&gt;: &lt;code&gt;lz4&lt;/code&gt; is the recommended compression algorithm for performance.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Ashift&lt;/strong&gt;: Set to &lt;code&gt;12&lt;/code&gt; for modern SSDs/NVMe to ensure proper block alignment.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Thin Provisioning&lt;/strong&gt;: Enabled for storage pools to allow for flexible disk allocation.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;current-configuration&#34;&gt;Current Configuration&lt;a class=&#34;anchor&#34; href=&#34;#current-configuration&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h3 id=&#34;1-initialize-zfs-pools-web-gui&#34;&gt;1. Initialize ZFS Pools (Web GUI)&lt;a class=&#34;anchor&#34; href=&#34;#1-initialize-zfs-pools-web-gui&#34;&gt;#&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;p&gt;Navigate to: &lt;code&gt;Datacenter&lt;/code&gt; → &lt;code&gt;Node&lt;/code&gt; → &lt;code&gt;Disks&lt;/code&gt; → &lt;code&gt;ZFS&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Web Server Architecture on Proxmox</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/web_server_architecture/</link>
      <pubDate>Wed, 26 Mar 2025 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/web_server_architecture/</guid>
      <description>&lt;h1 id=&#34;web-server-architecture-on-proxmox&#34;&gt;Web Server Architecture on Proxmox&lt;a class=&#34;anchor&#34; href=&#34;#web-server-architecture-on-proxmox&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;High-level architectural strategies for deploying web development environments on Proxmox, focusing on balancing isolation with resource efficiency.&lt;/p&gt;&#xA;&lt;h2 id=&#34;key-decisions&#34;&gt;Key Decisions&lt;a class=&#34;anchor&#34; href=&#34;#key-decisions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;LXC for Services&lt;/strong&gt;: Use LXC containers for lightweight, single-purpose services (e.g., Nginx, Databases) to minimize overhead.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;VM for Complex Workloads&lt;/strong&gt;: Use full VMs when running Docker, Kubernetes, or when custom kernel modules are required.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Reverse Proxy Pattern&lt;/strong&gt;: Always use a reverse proxy (Nginx Proxy Manager, Traefik, or C/Caddy) to handle SSL termination and route traffic to multiple internal services.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Database Isolation&lt;/strong&gt;: Separate databases into their own containers/VMs to improve security and facilitate independent backups.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;current-configuration&#34;&gt;Current Configuration&lt;a class=&#34;anchor&#34; href=&#34;#current-configuration&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h3 id=&#34;networking-patterns&#34;&gt;Networking Patterns&lt;a class=&#34;anchor&#34; href=&#34;#networking-patterns&#34;&gt;#&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Bridge Mode&lt;/strong&gt;: Default &lt;code&gt;vmbr0&lt;/code&gt; for services requiring LAN access.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Internal Network&lt;/strong&gt;: Use secondary bridges (e.g., &lt;code&gt;vmbr1&lt;/code&gt;) for isolated communication between web servers and databases.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h3 id=&#34;storage-patterns&#34;&gt;Storage Patterns&lt;a class=&#34;anchor&#34; href=&#34;#storage-patterns&#34;&gt;#&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Local-LVM&lt;/strong&gt;: Preferred for high-performance VM/container disks.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Directory Storage&lt;/strong&gt;: Suitable for container volumes and simpler storage needs.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;historical-notes&#34;&gt;Historical Notes&lt;a class=&#34;anchor&#34; href=&#34;#historical-notes&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;This architecture plan was established in March 2025. The preference for LXCs over VMs for simple web services was a primary driver.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Proxmox Network Troubleshooting</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/proxmox_networking/</link>
      <pubDate>Tue, 25 Mar 2025 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/proxmox_networking/</guid>
      <description>&lt;h1 id=&#34;proxmox-network-troubleshooting&#34;&gt;Proxmox Network Troubleshooting&lt;a class=&#34;anchor&#34; href=&#34;#proxmox-network-troubleshooting&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Troubleshooting steps for resolving connectivity loss to Proxmox nodes, specifically addressing IP conflicts and subnet mismatches.&lt;/p&gt;&#xA;&lt;h2 id=&#34;key-decisions&#34;&gt;Key Decisions&lt;a class=&#34;anchor&#34; href=&#34;#key-decisions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Static IP Reservation&lt;/strong&gt;: Proxmox nodes should always have a static IP (e.g., &lt;code&gt;192.168.0.69&lt;/code&gt;) that is &lt;strong&gt;excluded&lt;/strong&gt; from the OPNsense DHCP pool.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;current-configuration&#34;&gt;Current Configuration&lt;a class=&#34;anchor&#34; href=&#34;#current-configuration&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h3 id=&#34;troubleshooting-workflow&#34;&gt;Troubleshooting Workflow&lt;a class=&#34;anchor&#34; href=&#34;#troubleshooting-workflow&#34;&gt;#&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&lt;strong&gt;Verify Connectivity&lt;/strong&gt;: &lt;code&gt;ping 192.168.0.69&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Check Local Config&lt;/strong&gt;: Log in via console and verify &lt;code&gt;/etc/network/interfaces&lt;/code&gt;:&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-ini&#34; data-lang=&#34;ini&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;auto vmbr0&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;iface vmbr0 inet static&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#a6e22e&#34;&gt;address 192.168.0.69/24&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#a6e22e&#34;&gt;gateway 192.168.0.1&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#a6e22e&#34;&gt;bridge-ports enp3s0&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Check for IP Conflicts&lt;/strong&gt;: Ensure no other device (via DHCP) has been assigned &lt;code&gt;192.168.0.69&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;ARP Cache&lt;/strong&gt;: Clear local ARP cache if IP conflicts are suspected: &lt;code&gt;arp -d 192.168.0.69&lt;/code&gt;.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;historical-notes&#34;&gt;Historical Notes&lt;a class=&#34;anchor&#34; href=&#34;#historical-notes&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Identified an issue where a DHCP client was assigned &lt;code&gt;192.168.0.69&lt;/code&gt;, conflicting with the Proxmox static IP.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Proxmox Network Configuration</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/proxmox_network/</link>
      <pubDate>Sun, 23 Mar 2025 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/proxmox_network/</guid>
      <description>&lt;h1 id=&#34;proxmox-network-configuration&#34;&gt;Proxmox Network Configuration&lt;a class=&#34;anchor&#34; href=&#34;#proxmox-network-configuration&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Procedures for manually updating the IP address and network interface settings on a Proxmox VE host via the command line.&lt;/p&gt;&#xA;&lt;h2 id=&#34;key-decisions&#34;&gt;Key Decisions&lt;a class=&#34;anchor&#34; href=&#34;#key-decisions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Network configuration is managed via the &lt;code&gt;/etc/network/interfaces&lt;/code&gt; file. When changing network parameters, the Linux bridge (&lt;code&gt;vmbr0&lt;/code&gt;) must be updated to point to the correct physical interface.&lt;/p&gt;&#xA;&lt;h2 id=&#34;current-configuration&#34;&gt;Current Configuration&lt;a class=&#34;anchor&#34; href=&#34;#current-configuration&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;To modify the IP, gateway, or interface, edit the configuration file:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nano /etc/network/interfaces&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Example of a static configuration for a bridge interface:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Proxmox ZFS Storage &amp; Installation Patterns</title>
      <link>https://homelab.nbkelley.com/docs/infrastructure/proxmox-zfs/</link>
      <pubDate>Sun, 23 Mar 2025 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/infrastructure/proxmox-zfs/</guid>
      <description>&lt;h1 id=&#34;proxmox-zfs-storage--installation-patterns&#34;&gt;Proxmox ZFS Storage &amp;amp; Installation Patterns&lt;a class=&#34;anchor&#34; href=&#34;#proxmox-zfs-storage--installation-patterns&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Procedures for managing ZFS &lt;code&gt;rpool&lt;/code&gt; on single-disk Proxmox installations, including methods for limiting pool size and troubleshooting import failures.&lt;/p&gt;&#xA;&lt;h2 id=&#34;key-decisions&#34;&gt;Key Decisions&lt;a class=&#34;anchor&#34; href=&#34;#key-decisions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Single Disk Size Limitation&lt;/strong&gt;: When installing Proxmox on a large disk but wanting to limit the ZFS pool to a specific size (e.g., 64GB) to leave room for other partitions, use the &lt;code&gt;hdsize&lt;/code&gt; parameter in the Proxmox installer&amp;rsquo;s &lt;strong&gt;Advanced Options&lt;/strong&gt;.&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Custom Partitioning Method&lt;/strong&gt;: For complex layouts, it is possible to manually partition a drive in Debian and then upgrade the system to Proxmox VE.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;current-configuration&#34;&gt;Current Configuration&lt;a class=&#34;anchor&#34; href=&#34;#current-configuration&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h3 id=&#34;zfs-pool-creation-manual&#34;&gt;ZFS Pool Creation (Manual)&lt;a class=&#34;anchor&#34; href=&#34;#zfs-pool-creation-manual&#34;&gt;#&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;p&gt;To create a ZFS pool with specific optimizations (ashift=12, compression=lz4) and a size limit:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Web Server Deployment Pattern (Beginner)</title>
      <link>https://homelab.nbkelley.com/docs/services/web-server-setup/</link>
      <pubDate>Sun, 23 Mar 2025 00:00:00 +0000</pubDate>
      <guid>https://homelab.nbkelley.com/docs/services/web-server-setup/</guid>
      <description>&lt;h1 id=&#34;web-server-deployment-pattern-beginner&#34;&gt;Web Server Deployment Pattern (Beginner)&lt;a class=&#34;anchor&#34; href=&#34;#web-server-deployment-pattern-beginner&#34;&gt;#&lt;/a&gt;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;what-was-established&#34;&gt;What Was Established&lt;a class=&#34;anchor&#34; href=&#34;#what-was-established&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;For a beginner-friendly, lightweight, and scalable homelab setup, a stack consisting of Ubuntu Server LTS and Nginx is the recommended standard. This provides a balance of ease of use, extensive documentation, and low resource overhead.&lt;/p&gt;&#xA;&lt;h2 id=&#34;key-decisions&#34;&gt;Key Decisions&lt;a class=&#34;anchor&#34; href=&#34;#key-decisions&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Operating System&lt;/strong&gt;: Ubuntu Server LTS (chosen for stability, community support, and ease of management).&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Web Server&lt;/strong&gt;: Nginx (chosen over Apache for being lightweight, faster for static content, and better suited for future use as a reverse proxy).&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Resource Allocation (Small Site)&lt;/strong&gt;: 1-2 CPU cores, 1-2 GB RAM, 10-2/GB Disk.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;current-configuration&#34;&gt;Current Configuration&lt;a class=&#34;anchor&#34; href=&#34;#current-configuration&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h3 id=&#34;nginx-site-configuration&#34;&gt;Nginx Site Configuration&lt;a class=&#34;anchor&#34; href=&#34;#nginx-site-configuration&#34;&gt;#&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;p&gt;Default root directory: &lt;code&gt;/var/www/html&lt;/code&gt;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
