//nbkelley /homelab

Proxmox Storage Management#


title: Proxmox Storage Management version: 1.2 date: 2026-04-30 namespace: general wiki: homelab tags: [proxmox, storage, smb, cifs, zfs, backups] changes: Crystallized from historical DeepSeek conversation historical: true#

Proxmox Storage Management#

What Was Established#

  • SMB/CIFS shares can be integrated into Proxmox via CLI or the Web GUI.
  • GUI integration is recommended for Proxmox-native features (backups, ISOs, templates) and automatic retention management.
  • Local disk inspection (e.g., sda2) requires verifying mount status and filesystem type to avoid conflicts with active root partitions.

CLI Mounting (Persistent)#

  1. Install utilities: apt update && apt install cifs-utils
  2. Create credentials file: /etc/smb-credentials with chmod 600.
  3. Add to /etc/fstab: //server/share /mnt/smb-share cifs credentials=/etc/smb-credentials,uid=0,gid=0,file_mode=0660,dir_mode=0770,iocharset=utf8 0 0
  4. Test mount: mount -a

GUI Mounting (Proxmox Native)#

  • Navigate to DatacenterStorageAddSMB/CIFS.
  • Required Fields: ID, Server, Share, Username, Password.
  • Content Types (select based on use case):
    • ISO images
    • Container templates
    • VZDump backup files
  • Advanced Options: Max Backups, Prune Backups, SMB Version (e.g., 3.0), Domain.
  • Verification: Green checkmark in Storage list indicates active status. Use “Test Connection” if available.

Local Disk Inspection#

  • Check status: lsblk, blkid /dev/sda2, mount | grep sda2.
  • Mount temporarily: mount /dev/sda2 /mnt/sda2.
  • Inspect: ls -la /mnt/sda2, df -h, du -sh /mnt/sda2/*.
  • Note: sda2 is typically the root partition on Proxmox hosts; avoid modifying if already mounted at /.

Open Questions#

  • Specific purpose of sda2 on Isengard (192.168.1.69)? (Likely root, but verify with lsblk/blkid).
  • SMB share usage for LonelyMountain (192.168.1.137) backups vs ISOs? (GUI method preferred for VZDump retention).

Proxmox Systemd Mounts — systemd mount units for NAS shares Proxmox LXC Storage Mounts — LXC bind mounts and permission mapping Proxmox ZFS Storage & Installation Patterns Proxmox NVMe Partition Management TrueNAS (Vairë) - Storage & Backup Server

Sources#

  • ingested/chats/090-Mount SMB Share on Proxmox Guide.md
  • Historical DeepSeek conversation (2025-11-07)