Followed these instructions partially: https://www.xda-developers.com/disable-these-services-to-prevent-wearing-out-your-proxmox-boot-drive/
As the first of the two offenders that cause excessive write operations, pve-ha-lrm.service is responsible for tackling resource allocation on the local PVE node. The second one, pve-ha-crm.service, manages the resources for the entire cluster, monitors the status of each node, and ensures that the high-availability setup continues to function as long as the minimum servers required to maintain a quorum remain operational.
Since these services are required for Proxmox clusters, you’ll want them enabled if you’re trying to build a high-availability configuration. But for home labbers who plan to stay on a single-node setup, you can disable them to prevent (or rather, significantly slow down) the wear rate of your boot drive.
Doing so is fairly easy: just invoke the systemd manager via systemctl to stop each service before running the disable command to get rid of it.
- systemctl stop pve-ha-lrm.service
- systemctl disable pve-ha-lrm.service
- systemctl stop pve-ha-crm.service
- systemctl disable pve-ha-crm.service


