Hi, I want to update win10 to 11, but the check does not pass, it says that I have 1 gig of RAM available, ovfm bios also has 1 gb, and in the device it says 8 gb, how can I fix this?
Post the VM config with:
Post the output in CODE tags with the </> in the formatting bar.Code:cat /etc/pve/qemu-server/{VMID}.conf # replace {VMID} with the actual ID of the VM
root@server:~#cat /etc/pve/qemu-server/100.conf
agent: 1,fstrim_cloned_disks=1
args: -cpu 'host,-hypervisor,kvm=off'
balloon: 4096
bios: ovmf
boot: order=scsi0;hostpci0;hostpci1;net0;ide0
cores: 2
cpu: host
efidisk0: local:100/vm-100-disk-1.raw,efitype=4m,pre-enrolled-keys=1,size=528K
hostpci0: 0000:66:00.0,pcie=1,romfile=vbios_8845hs.bin
hostpci1: 0000:66:00.1,pcie=1,romfile=AMDGopDriver_8845hs.rom
hotplug: disk,network,usb,memory,cpu
ide0: backup:iso/virtio-win-0.1.262.iso,media=cdrom,size=708140K
machine: pc-q35-9.0
memory: 8192
meta: creation-qemu=8.1.5,ctime=1728257775
name: fs22
net0: virtio=BC:24:11:43:94:F7,bridge=vmbr0
numa: 1
ostype: win10
scsi0: local:100/vm-100-disk-0.raw,iothread=1,size=85G,ssd=1
scsihw: virtio-scsi-single
smbios1: uuid=d29f8fd3-f9ea-43f7-8a04-22826c4d8443
sockets: 2
tpmstate0: local:100/vm-100-disk-2.raw,size=4M,version=v2.0
vga: std
vmgenid: 898ea109-4260-49e9-a6da-7a46cec89078
Try disabling memory hotplug. Did you prepare the OS inside the VM for memory hotplug? Some VMs only see the first 1GB when using memory hotplug.Code:root@server:~#cat /etc/pve/qemu-server/100.conf agent: 1,fstrim_cloned_disks=1 args: -cpu 'host,-hypervisor,kvm=off' balloon: 4096 bios: ovmf boot: order=scsi0;hostpci0;hostpci1;net0;ide0 cores: 2 cpu: host efidisk0: local:100/vm-100-disk-1.raw,efitype=4m,pre-enrolled-keys=1,size=528K hostpci0: 0000:66:00.0,pcie=1,romfile=vbios_8845hs.bin hostpci1: 0000:66:00.1,pcie=1,romfile=AMDGopDriver_8845hs.rom hotplug: disk,network,usb,memory,cpu ide0: backup:iso/virtio-win-0.1.262.iso,media=cdrom,size=708140K machine: pc-q35-9.0 memory: 8192 meta: creation-qemu=8.1.5,ctime=1728257775 name: fs22 net0: virtio=BC:24:11:43:94:F7,bridge=vmbr0 numa: 1 ostype: win10 scsi0: local:100/vm-100-disk-0.raw,iothread=1,size=85G,ssd=1 scsihw: virtio-scsi-single smbios1: uuid=d29f8fd3-f9ea-43f7-8a04-22826c4d8443 sockets: 2 tpmstate0: local:100/vm-100-disk-2.raw,size=4M,version=v2.0 vga: std vmgenid: 898ea109-4260-49e9-a6da-7a46cec89078
Disable NUMATry disabling memory hotplug. Did you prepare the OS inside the VM for memory hotplug? Some VMs only see the first 1GB when using memory hotplug.
Also, ballooning won't work when doing PCI(e) passthrough, so it is unexpected that you configured it for this VM.
You were told to remove hotplug. So:Disable NUMA
TASK ERROR: NUMA needs to be enabled for memory hotplug
hotplug: disk,network,usb,memory,cpu
hotplug: disk,network,usb,cpu
ThanksYou were told to remove hotplug. So:
should be:Code:hotplug: disk,network,usb,memory,cpu
Code:hotplug: disk,network,usb,cpu
Also remove ballooning.
We use essential cookies to make this site work, and optional cookies to enhance your experience.