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)#
- Install utilities:
apt update && apt install cifs-utils - Create credentials file:
/etc/smb-credentialswithchmod 600. - 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 - Test mount:
mount -a
GUI Mounting (Proxmox Native)#
- Navigate to Datacenter → Storage → Add → SMB/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:
sda2is typically the root partition on Proxmox hosts; avoid modifying if already mounted at/.
Open Questions#
- Specific purpose of
sda2on Isengard (192.168.1.69)? (Likely root, but verify withlsblk/blkid). - SMB share usage for LonelyMountain (192.168.1.137) backups vs ISOs? (GUI method preferred for VZDump retention).
Related Pages#
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