Migration to Linux: VMs: Known issues

From Wurst-Wasser.net
Jump to navigation Jump to search

You are here: /Migrating from macOS to Linux/Migration to Linux: VMs: Known issues


Won't boot, TianoCore-Logo erscheint

BTW: Debian 11 lässt sich problemlos installieren!

https://www.youtube.com/watch?v=q76BqwHb7JQ

-> XML-Editing anmachen

https://forum.level1techs.com/t/qemu-resets-when-booting-windows-10-iso-installation/134465/16

I found out what was wrong, I had my NX CPU features disabled in the BIOS as well as other features. Everything is working fine now and all I got left to do is to get Looking Glass setup and get audio working. Thank you so much you have been extremely helpful throughout all of this.

Solution (hopefully)

Disable Secure Boot in UEFI? Eher nicht: https://www.tecklyfe.com/how-to-create-a-windows-11-virtual-machine-in-qemu/

-> Secure Boot ist wohl Pflicht?

-> TPM2/TIS enablen?

https://novacustom.com/guide-windows-11-virtualbox-ubuntu/ says:

Officially, Windows 11 requires Secure Boot and TPM 2.0. These features are not (yet) available in VirtualBox. The result is that you will get the error as you can see on the right image.

To bypass these settings, click on the X icon at the right upper corner and quit the setup. Hold the SHIFT key and press F10. Then give the command ‘regedit’. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\Setup and create a new key (folder) here named ‘LabConfig’. Within this key, create a new DWORD (32 bits) value named ‘BypassSecureBootCheck’. Create another DWORD (32 bits) value named ‘BypassTPMCheck’. Don’t forget to set both values to 1!

BTW soll Performance bringen

Edit machine's XML:

<clock offset="localtime">
   <timer name="rtc" tickpolicy="catchup"/>
   <timer name="pit" tickpolicy="delay"/>
   <timer name="hpet" present="no"/>
   <timer name="hypervclock" present="yes"/>
 </clock>

to:

<clock offset="localtime">
   <timer name="hpet" present="yes"/>
   <timer name="hypervclock" present="yes"/>
 </clock>