Search results

  1. Dunuin

    Cleaning up failed backups

    Like already said, you should to make sure that this never happens in the first place. Set up monitoring that sends you alert mails or whatever to warn you before you are running out of space. Then make sure you always got plenty of free space. I personally never fill my storages more than 80%...
  2. Dunuin

    [SOLVED] High Power Usage for Passthrough GPU When VM Is Stopped

    The guest backups you do when not using a PBS.
  3. Dunuin

    How to Trim ZFS Pool?

    Wouldn't make sense in your case. You probably don't want your backup drive to be part of that combined pool so you don't lose your backups and VMs at the same time when the pool fails. And it would be possible to stripe your mirrored "VirtualMachines" and single disk "MediaDrives" for 1.5TB of...
  4. Dunuin

    Unterstützung für Hook Skript wie bei PVE

    Kannst du wegen Wireguard nicht einfach mit Systemd-Services arbeiten? Der Tunnel kann doch permanent bestehen bleiben und muss nicht nur da sein wenn der Sync läuft. Das wird man sicher irgendwie so einstellen können, dass da einfach alle paar Minuten versucht wird einen Tunnel aufzubauen...
  5. Dunuin

    Nach Neuinstallation von ZFS Pool .raw wieder importieren

    Bei VMs "vm-DeineVMIDderVM-disk-NummerDerVirtuellenDisk". Also wenn die VM die VMID 123 hat und die VM bereits eine virtuelle disk "scsi0" besitzt, dann wäre die nächst freie Nummer der virtuellen Disk die 1 und damit wäre der Name des Zvols "vm-123-disk-1".
  6. Dunuin

    PBS Root vergrößern

    Und nicht vergessen ordentliche Backups zu haben, bevor du an Partitionen/Dateisystemen rumfummelst wo dir ein Tippfehler schnell alle Daten vernichtet.
  7. Dunuin

    Node inaccessible after attempting PCI passthrough (No Route to Host)

    PCI passthrough won't passthrough single devices, it will passthrough whole IOMMU groups. Make sure your disk controller is the only device in its IOMMU group. Usually when trying to passthrough the onboard disk controller you also passthrough the NIC, USB and soundcard as most of the time all...
  8. Dunuin

    Proxmox upgrade issue

    Check your repos. You probably mixed stuff up there, like mixing bullseye and bookworm repos.
  9. Dunuin

    PBS Root vergrößern

    Guck mal hier: Ist zwar für PVE aber bei PBS sollte es gleich sein, nur das es dann halt "/dev/pbs/root" ist. Du wirst vorher aber sehr wahrscheinlich erst deine sda3 Partition vergrößern müssen (z.b. eine gparted ISO booten die eine GUI dafür hätte oder per CLI mit fdisk/sgdisk/parted) sowie...
  10. Dunuin

    Encryption Options for VM´S /Server

    For encrypted backups you could setup a PBS. Highly recommended anyway because it saves tons of space, is way faster and lots of nice features like live restore, syncing and ransomware protection.
  11. Dunuin

    Nach Neuinstallation von ZFS Pool .raw wieder importieren

    Normal würde man das Zvol umbenennen damit es dem Schema entspricht und zur neuen VMID passt (siehe "zfs rename"). Dann ein "qm rescan 100" und PVE sollte die Disk der VM zuordnen und als "Unattached" Disk bei der VM anzeigen. Diese kann man dann über den Edit-Knopf der VM anhängen.
  12. Dunuin

    pve7. 2-3 can use wifi bridge to vm?

    Would be useful if you could show your network config. Should be similar to this: https://pve.proxmox.com/wiki/Network_Configuration#sysadmin_network_masquerading
  13. Dunuin

    Hardwareempfehlung für sparsamen Heimserver gesucht

    KA wie ihr da so nen Idle-Verbrauch hinbekommt. Habe hier ein X570 Board mit Ryzen 5800X, 7x SSD, 1x GTX 1060, 1x 10Gbit NIC, 2x 16GB RAM und das Ding bekomme ich mit Windows nicht unter 90W im Idle. Und die 90W sind schon mit CPU auf 1,7GHz im ECO Mode und GPU auf 50% gedrosselt inkl...
  14. Dunuin

    LXC and mount CIFS share

    When working with a privileged LXC I would directly mount the SMB share inside the LXC and skip that bind-mounting from the PVE host. You need to enable the CIFS feature for the LXC first via webUI.
  15. Dunuin

    Hardwareempfehlung für sparsamen Heimserver gesucht

    Ja, aber wenn du mal bei Intel's ARC in die Dokumentation der CPU guckst, dann steht da, dass die nur 16B nutzen kann. Ist außerdem nur Single-Channel. Das Problem ist, dass die Mobile CPUs halt eben für Laptops sind, fest verlötet werden müssen und üblicherweise dann auch nicht von namenhaften...
  16. Dunuin

    Hardwareempfehlung für sparsamen Heimserver gesucht

    Diese N100-Boards sind sehr sparsam und billig, aber können offiziell nur 16GB RAM und inoffiziell 32GB. Mit dem PCIe 3.0 4x für die NIC sieht es aber mau aus und 4x SATA ist ja auch nicht drin: https://www.asrock.com/mb/Intel/N100DC-ITX/ Was richtig Power hat und sparsam ist und sogar 10Gbit...
  17. Dunuin

    New to Proxmox - Questions about DR

    Host Backups are still on the roadmap (for years). You might want to use third-party backup tools for this or some config-backup-scripts from github. Always a good idea to have a recent backup of the "/etc" folder and maybe "/var/lib/vz". Firefall rules of guests are included in the VM/LXC...
  18. Dunuin

    pve7. 2-3 can use wifi bridge to vm?

    It is usually not possible to bridge a Wifi interface (or at least not in a way that VMs/LXCs could access the internet) becasue the Wifi AP will drop the packets of bridged virtual NICs. You have to NAT between a bridge and a wifi interface so the Wifi AP is always seeing the single MAC of the...
  19. Dunuin

    [SOLVED] Can't create VMs on ZFS pool

    Don't see why. Command is still correct for a raidz2 and they link to warnings like bad IOPS performance as a VM storage and the problem with a too low volblocksize.
  20. Dunuin

    Cluster Daten Migration

    Es gibt Cross-Cluster-Migration als Feature-Preview, aber das wird es bei dir wohl noch nicht geben da dein Cluster veraltet ist (der läuft seit gut 1,5 Jahren ungepatcht mit ernsten Sicherheitslücken und Bugs!). Backup+Restore ist natürlich immer eine einfache und zuverlässige Option, aber...