<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Manual on homelab</title>
    <link>https://homelab.nbkelley.com/tags/manual/</link>
    <description>Recent content in Manual 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/manual/index.xml" rel="self" type="application/rss+xml" />
    <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>
  </channel>
</rss>
