Search results

  1. I

    Why do bind mounts prevent snapshots?

    Works for me Beware of the missing leading slash on the second path argument for the path inside the lxc container.
  2. I

    thin pool pve-data get lost during upgrade – need new one

    I do not know why i was not able to solve that ealier, but the first two commands on this page solves my problem: https://pve.proxmox.com/wiki/Storage:_LVM_Thin lvcreate -L 100G -n data pve lvconvert --type thin-pool pve/data After that i had to add a new pool under DATACENTER -> STORAGE ->...
  3. I

    thin pool pve-data get lost during upgrade – need new one

    I have a PVE installation without any machines since 2021. Its job was to serve a local samba service. I brought this to PVE 8 and now wanted to install the first lxc. This failed, because the pve-data pool was not found anymore. So i wanted to remove the rest of the old data pool (which...
  4. I

    Opt-in Linux 6.5 Kernel with ZFS 2.2 for Proxmox VE 8 available on test & no-subscription

    Also run into the network issue on Saturday night. Rebooting 6.5.3 instead of 6.5.11-3 worked for me. It should not, if i read the thread here.
  5. I

    Proxmox auf Server od PC Unterschied?

    Meine Erfahrung: Business-PC Workstations laufen ziemlich gut, gerade weil es mit RAID Controllern im Server häufig Stress macht (zuletzt: Kernel 5.15 mit IOMMU), den es z.B. mit einem M.2 SSD RAID so nicht gibt. In 90 % aller Fälle mach ich ein SSH auf dem Proxmox und starte die VMs neu. In 10...
  6. I

    vzdump backup retention with "delete oldest backups first" policy ?

    I have somthing like this: /usr/local/bin/SmartStore.sh #!/bin/bash PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin # Import Config File config=/usr/local/bin/config.cfg source $config # Check if Already Running for pid in $(pidof -x SmartStore.sh); do if [ $pid != $$ ]...
  7. I

    Proxmox VE 8.0 (beta) released!

    There is no 'pve-no-subscription' repository until now. you have to use 'pvetest' as shown in the first post in the FAQ. BTW: Wanted to upgrade my private Server to a new SSD and used the beta above. No problems until now. Pentium 4xxxu, NVME ssd with a single 2 TB and ZFS (zstd)
  8. I

    VM Backups Zeitpläne

    Extrem charmante Lösung. Skaliert natürlich auch erst ab dem zweiten Hardwareserver, also wieder nichts für mach ich mal zuhause, darf aber alles nichts kosten. Werde ich mir aber beim nächsten, größeren Kunden auch so aufsetzen. Brauche ich dann zwei Lizenzen für den PBS? Deshalb mag ich die...
  9. I

    VM Backups Zeitpläne

    Ja, da hast du vollkommen recht. Genau das ist die Stärke des PBS. Aus meiner Sicht gibt es die folgenden Backup Szenarien, die ohne PBS auskommen: - VZdump und Vollbackups: Funktioniert vernünftig bis ~ 400 GB Gesamtdaten über alle VMs. Mit steigender Größe dauern Backups zu lange, belasten...
  10. I

    VM Backups Zeitpläne

    Ja, die Open Source Variante ist super, insbesondere im Heimbereich – aber da tuts fast immer auch ein vzdump. Was ich hier aufgeschnappt habe – korrigiert mich, wenn ich falsch liege – ist, dass der Storage vom Proxmox Backup Server alleine nicht für eine Wiederherstellung ausreicht, sondern...
  11. I

    VM Backups Zeitpläne

    Proxmox Backup server als VM installieren ist – wie ich das hier gelesen hatte – keine gute Option. Das funktioniert, solange du nur einzelne Dateien oder Maschinen restoren willst. Aber wenn dir dein Server komplett abschmiert, ist das Recovery schwer, weil das Proxmox Backup auch weg ist...
  12. I

    Vms als vmdk oder als dd Image exportieren

    Oh, bitte so: dd if=/dev/dein/device/zum/export of=/dein/zielpfad/extern bs=1M status=progress Es gibt nichts schlimmeres als nicht zu wissen, wann es fertig ist, oder ob man die externe Festplatte wieder mal vesehentlich in einen USB2.0-only Port gesteckt hat ;-)
  13. I

    Proxmox Webinterface nicht erreichbar.

    Nur so ein Hinweis, weil ich das jetzt schon zweimal hatte: Duplicate IP im Netz. Einmal hat mein Notebook aufgrund eines DHCP Fehlers die gleiche Adresse bezogen, die der Proxmox hatte. Einmal hatte ich dem Proxmox bei der Vorbereitung eine IP gegeben, die schon belegt war, aber zum Zeitpunkt...
  14. I

    Ballooning – Boot-Reihenfolge und Overprovisioning

    Ich habe bei einem von mir gehosteten Server Ballooning eingesetzt. Der Server hat 64 GB RAM, es laufen 3 Systeme darauf: - Windows Server 2022 Standard - Domain Controller - Windows Server 2022 Standard - Application Server + Dateifreigabe - Windows 10 VM mit Zugriff für mehrere Benutzer via...
  15. I

    How to vma extract -r fifo from zstd ?

    Is there a possibility to push the .raw image from vma extract directly into local-zfs storage without creating the subdir with qemu-server.conf? Or is there a possibility to mount a .raw image directly in a VM to recover files?
  16. I

    VZdump Skript with handling of --maxfiles

    Hier noch eins, falls mal eine vma.zstd im Proxmox Hypervisor als Partition einbinden will, um einzelne Dateien zu extrahieren. Macht kein Sanitizing, ist für den Admin bestimmt. Muss für non-zstd Images angepasst, werden, ebenso für Multiple-Disk-Images in einer VMA. #!/bin/bash echo...
  17. I

    Programm automatisch starten innerhalb eines LXC Containers

    Der Crontab ist eher so eine 'dreckige' Notlösung für selbstgeschriebene Skripte, heruntergeladene Binarys. Würde ich nicht machen, wenn ich etwas sauber implementieren möchte, schon gar nicht für installierte Systemdienste.
  18. I

    Extracting data from *.vma file

    #!/bin/bash echo "vmaRecover 1.0" if [ -z ${1} ] || [ -z ${2} ] || [ "$1" == "-h" ] ; then echo "vmaRecover.sh <file.vma.zst> </workingDir> [clean]" echo "Working dir contains subfolder with raw_image and loop folder for mounting file Systems." exit 0 fi file=$1 workingDir=$(echo "$2"...
  19. I

    VZdump Skript with handling of --maxfiles

    Hatte ich witzigerweise gestern Abend auch gelesen und heute morgen korrigiert. War klar, dass das jemandem auffällt ;-)
  20. I

    VZdump Skript with handling of --maxfiles

    Ich weiß, dass es einen Proxmox Backup Server gibt. Ich weiß, dass dieses Skript nicht perfekt ist, weil es das ein oder andere noch hardkodiert nutzt. Aber mit diesem Skript und Cron kann ich an Wunschtagen ein VZdump Export machen und dabei in Abhängigkeit des freien Speicherplatzes die Anzahl...