Recent content by ubu

  1. ubu

    [TUTORIAL] HiveStation - Developer Workstation for Proxmox Virtual Environment

    I will try your scripts on a test machine and report back
  2. ubu

    [TUTORIAL] HiveStation - Developer Workstation for Proxmox Virtual Environment

    Interesting, i run zfs on my servers without problems for years
  3. ubu

    [TUTORIAL] HiveStation - Developer Workstation for Proxmox Virtual Environment

    Can/Would you include ZFS Support instead of BTRFS?
  4. ubu

    stupid question - I accidentally deleted my /var directory. How bad is that?

    First, backup your virtual machines and the config in /etc/pve, if still possible. While a process (in this case pmxcfs, get the pid with ps aux |grep pmxcfs |grep -v grep | awk '{print $2}' ) is running you can access the open files via /proc/PID/fd/* The rest of /var you should be able to...
  5. ubu

    [SOLVED] Multiple DKIM

    Multiple DKIM should not be hard to implement ... Can you ? ... Would you ... Pleeeease ;)
  6. ubu

    A guard rail suggestion to avoid losing everything like I just did.

    If possible (e.g. enough storage available) you should always restore to a new VMID, or create a backup of the broken system before overwriting it. You can never be sure that a backup is valid and restorable until you have sucessfully restored AND tested it. Unfortunatly, especially for large...
  7. ubu

    PDM 1.0.1 Error "missing field `data` at line 1 column 157" on PBS Storage Access

    Like in the title, i cet the error "missing field `data` at line 1 column 157" when i tried to view the content of the storage
  8. ubu

    NVIDIA L4 GPU (AD104GL)

    Just done exactly that for a customer ;) Not tested yet, bit nvidia-smi sees the card inside the container, so i think it will work additional lxc-config entries: lxc.cgroup2.devices.allow: c 195:* rwm lxc.cgroup2.devices.allow: c 234:* rwm lxc.cgroup2.devices.allow: c 509:* rwm...
  9. ubu

    PVE upgrade 6.4 to 7, 8, 9...

    Unfortunately SSDs have gone up in price quite a bit, but I would suggest a simple raidZ1 zfs mirror with enterprise SSDs, no need for additional boot drives. (Sorry for the confusion, i wanted to write mirror not RaidZ1, must have been more tired than i realized)
  10. ubu

    PVE upgrade 6.4 to 7, 8, 9...

    I think it should still work, maybe you need to use the Debian archive repository. But I think it will be easier to make backups of your virtual machines and containers, do a fresh proxmox install and restore your backups. If you use a completly new server or at least new disks, you avoid any...
  11. ubu

    [SOLVED] Multiple DKIM

    When will we get Support form multiple DKIM, DKIM per Domain
  12. ubu

    I recommend between 2 solutions

    With Ceph, you need fast networking for your Storage, 10 Gbit should be the absolute minimum, better 25 or 40 Gbit. Your data will be on all 3 nodes for redundancy, if one node fails you can still work, if 2 Nodes fail your ceph is no longer writeable. ZFS Replication works great for 2 Nodes...
  13. ubu

    Change zfs boot pool name

    zpool-rename.md: rpool is the original, zp_pve the new pool name # Rescue System booten zpool import rpool zp_pve -R /mnt -f for i in proc sys dev run; do mount -o bind /$i /mnt/$i ; done chroot /mnt rm /etc/default/grub.d/zfs.cfg sed -i s/quiet//g /etc/default/grub sed -i.bak...
  14. ubu

    Change zfs boot pool name

    You can change the pool name afterwards, but it is a bit of work