Proxmox in a homelab breaks in four places: the host underneath, the containers on top, the storage behind it, and the cluster between the nodes. Almost everything on this page is one of those four wearing a different error message — which is why they are collected together rather than scattered across an archive by date.
All of it is written from a single Proxmox host running a working homelab, in the order the problems tend to arrive.
Backup and storage
Every guide in this section exists because of the same discovery, arrived at from four different directions: a backup can look completely successful and protect nothing.
Not a corrupted archive, not a failed job, not a red light anywhere. A green tick, a sensible retention policy, a datastore filling up at a believable rate — and a gap you only find on the day you need the data back. That is the failure mode this collection is about, because it is the one that actually costs people their data. A backup that visibly fails gets fixed on Tuesday.
1. What is actually inside the backup
The first assumption worth destroying is that backing up a container backs up what the container serves. Bind-mount a NAS dataset into an unprivileged LXC and the data lives outside the container’s rootfs — so it is not in the container backup, and nothing tells you that.
Sharing TrueNAS Datasets with Unprivileged LXC Containers in Proxmox is the setup itself: how the UID mapping works and how to get the permissions right. Read it for the mechanics, and note what the resulting backup does and does not contain.
2. What retention actually guarantees
Once the contents are right, the next assumption is that a retention policy is a protection policy. It is not. Prune and garbage collection decide what is kept; they decide nothing about who can delete it. Anyone holding datastore credentials can still take the whole history.
Immutable backup on Proxmox is about the gap between those two things — what you can genuinely enforce on your own hardware, what needs object storage with a lock on it, and what you should stop calling immutable.
3. When the backup system is the thing that breaks
Backups protect the machines they run against. They do not protect themselves. A kernel update took the backup host down here, and the question stopped being “are the backups good” and became “can I prove anything about the state of the host that holds them”.
PBS Backup Host Outage: Evidence Checklist After a Kernel Update is the checklist that came out of it — what to collect, in what order, before you start changing things and destroy the evidence.
4. Copies are not recovery
The last assumption is the biggest one. Replication gives you the data somewhere else. Recovery is an ordered runbook, boot sequencing, re-addressing, and a test you can actually run without breaking production — which is what the commercial products were selling all along.
What Replaces SRM and vSphere Replication on Proxmox? covers ZFS send/receive and the scripting around it, and is honest about the part scripting does not replace.
5. When the storage underneath is the problem
The rest of this section is the layer below all of that. LVM thin provisioning and cache, qcow2 images that come back carrying a previous guest’s data, NFS mounts that connect from the frontend and fail from the backend, and the one that wastes the most time of any of them: I/O pressure stalls, where nothing is broken and everything is slow.
If you are chasing a stall, start with Proxmox IO pressure stall and read PSI before you touch anything else — it is one command and it tells you whether to look at the host or inside a single container. Guessing that wrong is how an afternoon disappears.
The short version
If you read nothing else here: check what is inside your backups before you trust the schedule, and restore something on purpose, on a day you chose. Every problem in this section is cheap to find on a Tuesday afternoon and expensive to find any other way.
- mkdir /mnt/vzsnap0 permission denied proxmox: it’s not /mnt, it’s your storage (Aug 2026)
- Proxmox Cluster NFS: Frontend Connects, Backend Fails (Aug 2026)
- Changing VMID of a VM in Proxmox: Backup/Restore vs Config Edit (Aug 2026)
- IO Pressure Stall – Unexplained: Diagnosing Proxmox LXC and ZFS I/O Hangs (Aug 2026)
- LVM Snapshot-as-Volume-Chain: Newly created qcow2 image reuses old guest data after VM deletion (Aug 2026)
- How Do I Setup Jellyfin on Proxmox With Only 1 SSD for Storage? (Aug 2026)
- Immutable backup on Proxmox: what you can actually enforce on a homelab budget (Aug 2026)
- Rancher cluster node has disk pressure — fix it in a Proxmox homelab (Jul 2026)
- What Replaces SRM and vSphere Replication on Proxmox? ZFS replication and a little scripting (Jun 2026)
- Is it possible to have a Proxmox VM image? Yes, here’s how (May 2026)
- PBS Backup Host Outage: Evidence Checklist After a Kernel Update (May 2026)
- Proxmox LVM Cache Thin Provisioning — Make It Actually Work (Mar 2026)
Containers and permissions
Unprivileged LXC containers are the right default and they cost you one thing: the UID map. Proxmox hands each container 65536 IDs starting at host UID 100000, and every “permission denied”, every nobody:nogroup on a bind mount, and a surprising number of stranger symptoms trace back to data whose ownership does not fit inside that window.
Proxmox unprivileged container UID/GID mapping explained is the reference — remapping the range, carving a hole in it, and the /etc/subuid entry whose absence makes the container refuse to start with an error that says nothing useful.
The rest of this section is what goes wrong once containers are running: a monitoring agent reporting the host’s RAM instead of the container’s, a TTY that answers in gibberish, screen refusing to attach, and resizing a container’s disk without rebuilding it.
- How to handle unprivileged containers and large UIDs/GIDs in Proxmox (Aug 2026)
- Fix ‘Must be connected to a terminal’ when attaching screen inside a Proxmox LXC container (Jun 2026)
- Fix LXC TTY Login Prompt Gibberish in Proxmox (Apr 2026)
- Fix Beszel Agent Reporting Host RAM in LXC Containers (Mar 2026)
- How to Resize a Linux Container in Proxmox (Feb 2026)
- Sharing TrueNAS Datasets with Unprivileged LXC Containers in Proxmox for Plex/Jellyfin (Aug 2025)
Host and hardware
Before you debug a VM or a container, rule out the host. That is not a slogan — it is the order that saves time, because a host-level fault presents as an application-level symptom often enough to send you looking in the wrong place for an hour.
This section covers getting Proxmox installed at all (USB installers that fail on current versions, PXE that cannot find its ISO), the boot chain when it stops halfway, hardware that misbehaves quietly (an NVMe controller dropping off the bus, a kernel warning about a corrupt EDID header), a hypervisor that restarts itself, and the console you are reading all of it through.
- EDID has corrupt header: Proxmox kernel warning explained and how to silence it (Aug 2026)
- Automated install via PXE not finding ISO file on Proxmox (Aug 2026)
- Automatically Suspend VMs After Shutdown of Proxmox Host (Aug 2026)
- NVMe controller is down on Proxmox — check ASPM and kernel params before blaming the drive (Aug 2026)
- Proxmox noVNC escape key — remap it or just stop it from closing the console (Jul 2026)
- Proxmox Hypervisor Restarts itself — check logs and watchdog first (May 2026)
- Proxmox Stuck at ‘Loading Initial Ramdisk’: Diagnosis and Fix (Apr 2026)
- Fixing Proxmox USB Installer Failures on Current Versions (Jan 2026)
Cluster and networking
The smallest cluster is the one that teaches you the most, and usually the hard way: two nodes, no quorum device, and a reboot on one of them that stalls processes on the other. This section is that, plus the network side — a container with no internet, multiple IPs on one subnet, finding a VM’s address when the guest agent is not installed, and taking a cluster apart properly when you want the node back as a standalone host.
- Proxmox container no internet: diagnose from host to CT (Aug 2026)
- Delete Proxmox Cluster — the full cleanup the old guides skip (Jun 2026)
- VM processes stall when rebooting adjacent node — fix it in a two-node Proxmox cluster (Apr 2026)
- Proxmox with multiple IP same subnet — just add it to the bridge (Feb 2026)
- Proxmox get VM IP address without guest agent (Jan 2026)
What is not here
This page grows as things break. It does not cover backing up Proxmox’s own configuration, Ceph, or anything at genuine business scale, because none of those has happened here yet — and there is enough advice online written by people they also have not happened to.