Search results

  1. H

    Ceph 20.2 Tentacle Release Available as test preview and Ceph 18.2 Reef soon to be fully EOL

    Did an upgrade follow the guide. Had to edit the ceph repo to test and the upgrade went fine. 4 Servers with 3 osd each.
  2. H

    Bulk Migrate Error in 9.1.2

    I had to add "max_workers: 1" to /etc/pve/datacenter.cfg to get migration working
  3. H

    Check the disk usage of a virtual machine

    This project looks promising in monitoring disk usage etc: https://github.com/rcourtman/Pulse
  4. H

    Unable to Configure Intel X540-AT2 Network Card on Proxmox VE 8.2

    Looks like the driver is not signed. Looks like the module you build need signing https://wiki.debian.org/SecureBoot
  5. H

    Check the disk usage of a virtual machine

    Played with your script. Made it for all running vm's on the host and skipped the snap mounted ones for i in `qm list|grep running|cut -c5-10`; do echo " VMID NAME STATUS MEM(MB) BOOTDISK(GB) PID";qm list|grep $i;qm agent $i get-fsinfo | jq -r '.[] |...
  6. H

    [SOLVED] KVM VMX Setting for Nested XenServer

    I had same problem running 64bit vm's on nested esx running in kvm. I had to set up this in /etc/modprobe.d/kvm.conf on my intel server: options kvm ignore_msrs=1 options kvm_intel nested=y ept=y options kvm_intel emulate_invalid_guest_state=0
  7. H

    ESXi as a Virtual Machine in Proxmox - can not run 64 bit OS

    I don't have amd but I think it should be something like: options kvm ignore_msrs=1 options kvm_amd nested=1
  8. H

    ESXi as a Virtual Machine in Proxmox - can not run 64 bit OS

    Yes. With those options was I able to run 64 bit vm's in esx. I used version 6.5.
  9. H

    ESXi as a Virtual Machine in Proxmox - can not run 64 bit OS

    You can run nested esx in kvm if your cpu support it. I have an intel cpu that support ept and nested, and made a /etc/modprobe.d/kvm.conf file with: options kvm ignore_msrs=1 options kvm_intel nested=y ept=y options kvm_intel emulate_invalid_guest_state=0 You also have to edit your esx in the...
  10. H

    [SOLVED] dist-upgrade failed

    It was, but I found out that it was added 127.0.0.1 homelab by some local installed package. I removed it, and now its working again
  11. H

    [SOLVED] dist-upgrade failed

    Did a dist-upgrade on pve 5.0, and it failed. Here is output : root@homelab:~# apt-get update Get:1 http://security.debian.org stretch/updates InRelease [62.9 kB] Ign:2 http://ftp.no.debian.org/debian stretch InRelease Hit:3 http://ftp.no.debian.org/debian stretch Release Get:5...
  12. H

    Proxmox VE 5.0 beta1 released!

    Any plans for upgrade qemu to 2.8 from 2.7.1?
  13. H

    Proxmox VE 5.0 beta1 released!

    I don't have the output, but as I remember looking at the screen after pushing alt+f2 it was when it tried to do a fdisk to partition it. It couldn't activate because it was busy and would use it at the next reboot. On the second tried I had removed all the partitions before I started, but same...
  14. H

    Proxmox VE 5.0 beta1 released!

    I tried the installer from iso, and it stopped on partition the disk. Something locks up the disk so it can't partition it. I tried twice, and the same happend. I then tried the 4.4 installer and it worked as it should. So something behaves different with the installer on 5.0 vs the the one in...
  15. H

    Benchmarking with poor results for proxmox

    Running one vm in a test isn't that interesting. Its more interesting running test with more vm's to see how it scale. Like using ballooning drivers in windows etc. Another thing that impact is how the underlying fs is made (ext3, ext4,xfs) and how its tuned. What cpu features is allowed by the...