Recent content by alexdelprete

  1. A

    Tuxis launches free Proxmox Backup Server BETA service

    great news. Why were you reluctant to say there will be another server for free accounts? Too much demand? :)
  2. A

    pvestatd crashes every few days

    While waiting to understand what the issue is and the patch to be merged, I implemented this workaround systemctl edit pvestatd.service Add the following in the editing section: [Service] Restart=on-failure save and exit systemctl daemon-reload The service should be automatically restarted...
  3. A

    Tuxis launches free Proxmox Backup Server BETA service

    Can we migrate existing free version accounts to this new server?
  4. A

    pvestatd segfaults

    I will try it, thanks. I would agree with you if it wasn't for the fact that I ran proxmox 8.x for 1 year on the same hardware with no issues. How would you explain that?
  5. A

    pvestatd crashes every few days

    Has this patch been merged? I have latest upgrades but I still don't see this in the service unit file. I'll add it manually.
  6. A

    pvestatd segfaults

    I have the same issue on my MS-01 system. It has worked perfectly fine until I upgraded to proxmox 9. only after the upgrade pvestatd started to suddenly stop with this kind of error in the log: Even though I didn't think it was a hw issue, I ran hw tests on memory and cpu, and no issues were...
  7. A

    Can't remove old vm-disk "data set is busy"

    Bookmarked also this post. You never know what can happen in these homelabs, but that's the funny part for me. It's so boring when everything's working as expected. :) It's a good thing to learn these things that can be really useful when working on customers projects. Thanks again.
  8. A

    Can't remove old vm-disk "data set is busy"

    These are the gems you find on this forum (via google, because forum search is not optimal unfortunately). I was getting crazy, couldn't delete a container because of a busy disk, tried 99 things and nothing worked, then I find this post, and not only I solved the issue, but I learned a lot of...
  9. A

    How to change migration network

    Found it: Datacenter doc. In case anybody stumbles here for the same problem, here's what I did: In /etc/pve/datacenter.cfg I added: migration: network=172.16.0.80/32,type=insecure And the Datacenter -> Options the Migration Settings was updated right away:
  10. A

    How to change migration network

    do you know if it's possible to do it via CLI? my problem is that I created a thunderbolt network interface manually, it's working fine, but since I created it outside of proxmox UI it doesn't appear in the Migration Settings pull down menu. Thanks.
  11. A

    e1000e:reset adapter unexpectedly

    from what I researched at the time, the issue is specific with e1000e driver and it came up only because my PBS backups were failing with strange communication errors. If you don't have any issues with those HP mini-pcs, don't bother.
  12. A

    e1000e:reset adapter unexpectedly

    On the bridge: > cat /etc/network/interfaces auto lo iface lo inet loopback iface eno1 inet manual auto vmbr0 iface vmbr0 inet static address 10.1.10.10/23 gateway 10.1.10.1 bridge-ports eno1 bridge-stp off bridge-fd 0 post-up /sbin/ethtool -K $IFACE tso off gso off...
  13. A

    Why do bind mounts prevent snapshots?

    Just implemented this, and it works as described, thanks for confirming it's actually the same thing. Out of curiosity: if it's technically the same, so it's just a way of doing a bind mount in a different way, why does this allow snapshots and the other doesn't? I mean it's just some code in...
  14. A

    Why do bind mounts prevent snapshots?

    Works for me, but exactly like it was described by @leesteken in post #8: without the leading slash on the second path). Initially, I thought it was a mistake, but with the leading slash it doesn't work. Works perfectly without it, and finally I can enable snapshots. Here's what I added to ALL...