Search results

  1. J

    Wrong datastore usage displayed when datastore is on root disc

    ds-1 and ds-2 on a root disc ds-2 and ds-3 on zfs datasets proxmox-backup-manager version --verbose proxmox-backup unknown running kernel: 6.2.11-2-pve proxmox-backup-server 2.4.2-1 running version: 2.4.2 ifupdown2 3.1.0-1+pmx4...
  2. J

    Proxmox Backup Server auf Strato vServer installieren

    zugehörige Ticket: https://bugzilla.proxmox.com/show_bug.cgi?id=4728 und kommende Änderung in proxmox-sys 0.5.0-1 https://git.proxmox.com/?p=proxmox.git;a=commit;h=ce389914ff79bc99b054c23ae4ca3a487fefe950
  3. J

    Random kernel panics

    If your BIOS is not up to date, try updating it. I had the same problem with Asrock Rack W480D4U motherboard + Intel i7-10700 CPU, after BIOS update the problem is gone.
  4. J

    [SOLVED] PERC H310 already flashed to IT-Mode?

    you can check with systool: apt install sysfsutils systool -c scsi_host -v -d host0 if you have active_mode = "Initiator" and supported_mode = "Initiator" (Initiator Target -> IT) your Controller is in IT-mode. by the way, your log already shows: May 01 13:38:02 Enterprise kernel: mpt2sas_cm0...
  5. J

    Hdparm standby disks on pve

    Try with following "global_filter": global_filter = [ "r|/dev/zd.*|", "r|/dev/mapper/pve-.*|", "r|/dev/mapper/.*-(vm|base)--[0-9]+--disk--[0-9]+|", "r|/dev/sda|", "r|/dev/sdb|", "r|/dev/sdc|" ] Close the Proxmox GUI in Browser, this can wake up the disks!
  6. J

    Hdparm standby disks on pve

    Try without "apm". for example:
  7. J

    Proxmox friert nach 4 Tagen uptime ein

    Es funktioniert bei mir leider nicht.
  8. J

    Proxmox friert nach 4 Tagen uptime ein

    Ich habe das gleiche Problem mit i7-10700 (Host friert, ohne Log Eintrag, keine Kernel-Panik). Ich habe jetzt Hyper-Threading im Bios ausgeschaltet, mal sehen ob es hilft.
  9. J

    Proxmox friert komplett ein

    Mit Proxmox 7.3 / Kernel 5.15 schon probiert?
  10. J

    Katastrophe - nach erneuter INstallation der virtio-tools geht nichts mehr

    bei mir funktioniert nur mit VirtIO Version 0.1.208: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.208-1/virtio-win-0.1.208.iso
  11. J

    LXC with nested Docker => "overlayfs: upper fs missing required features."

    set/check containter features: Nesting: true FUSE: true check docker storage driver: docker info | grep Storage Storage Driver: fuse-overlayfs
  12. J

    LXC with nested Docker => "overlayfs: upper fs missing required features."

    make it executable: chmod +x /usr/local/bin/fuse-overlayfs
  13. J

    LXC with nested Docker => "overlayfs: upper fs missing required features."

    you don't need execute that file, docker auto-detect that and use it.
  14. J

    LXC with nested Docker => "overlayfs: upper fs missing required features."

    Download the "fuse-overlayfs-x86_64" file, move to "/usr/local/bin/fuse-overlayfs" and make it executable.
  15. J

    Proxmox - in danger because of Russian firms!!!

    Google Translator: I think their "product" will not take off. Everyone will understand why, well, except for those who want to stay on a normal platform but at the same time comply with the law. As it appeared, so it will die.
  16. J

    Proxmox 7 watchdog: Hard LOCKUP CPU

    Have you tried with pve-kernel-5.13?
  17. J

    Shutdown des PBS nachdem alle VMs gesichert wurden?

    mit "systemctl suspend" über ssh zb.: ssh root@pbs -i ~/.ssh/id_rsa_pbs 'systemctl suspend'
  18. J

    Shutdown des PBS nachdem alle VMs gesichert wurden?

    mit pve-manager 7.1-11 und "job-init" Hook funktioniert: vzdump-hook-script: #!/bin/bash if [ "$1" == "job-init" ]; then etherwake XX:YY:ZZ:XX:YY:ZZ ping -W 20 -c 1 pbs-test.lan /usr/sbin/pvesm set pbs-test -disable false fi exit 0