Migration to Linux: VMs: Known issues

From Wurst-Wasser.net
Revision as of 16:32, 23 August 2023 by Heiko (talk | contribs) (Created page with "You are here: /Migrating from macOS to Linux/{{PAGENAME}} ---- = 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 le...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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?

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>