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