I am running QEMU/KVM on Linux Mint 21 (22.04). It's working Great! I've been fighting with VMware slowness for years...
I have several VMs. Sonoma, Monterey, etc. Some migrated from VMware. Some were created fresh in QEMU. I am using OpenCore from OSX-VPN as a starting point. But I am have some very strange video problems. I have tried all different permutations of settings.
In Sonoma, if I run a installer.pkg installer, built elsewhere with the xcode pkgbuild etc... The colors of the installer make it impossible to read. Text is white on white except for the license which is white on black. And the buttons are white on white - so invisible besides the hover. Colors of other things look normal.
If I run the same installer on Monterey, it looks fine and functions fine.
Has anyone else experienced this?
My system is Mint 21 (based on Ubuntu 22.04). I'm using QEMU 6.2 from the Ubuntu repos. And my processor is a i7-8700T with only the embedded UHD 630 graphics.
See my qemu script below:
MY_OPTIONS="+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check"# This script works for Big Sur, Catalina, Mojave, and High Sierra. Tested with# macOS 10.15.6, macOS 10.14.6, and macOS 10.13.6.ALLOCATED_RAM="8192" # MiBCPU_SOCKETS="1"CPU_CORES="2"CPU_THREADS="4"REPO_PATH="."OVMF_DIR="."OSXKVM_PATH="/data/VMs/OSX-KVM"# shellcheck disable=SC2054args=(-enable-kvm -m "$ALLOCATED_RAM" -cpu Haswell-noTSX,kvm=on,vendor=GenuineIntel,+invtsc,vmware-cpuid-freq=on,"$MY_OPTIONS"-machine q35-usb -device usb-kbd -device usb-tablet-smp "$CPU_THREADS",cores="$CPU_CORES",sockets="$CPU_SOCKETS"-device usb-ehci,id=ehci-device nec-usb-xhci,id=xhci-global nec-usb-xhci.msi=off-device isa-applesmc,osk="ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc"-drive if=pflash,format=raw,readonly=on,file="./OVMF/OVMF_CODE.fd"-drive if=pflash,format=raw,file="./OVMF/OVMF_VARS.fd"-smbios type=2-device ich9-intel-hda -device hda-duplex-device ich9-ahci,id=sata-drive id=OpenCoreBoot,if=none,snapshot=on,format=qcow2,file="./OpenCore/OpenCore.qcow2"-device ide-hd,bus=sata.0,drive=OpenCoreBoot,bootindex=1-drive id=MacHDD,if=none,format=qcow2,file="./macOS.img"-device ide-hd,bus=sata.1,drive=MacHDD,bootindex=2-netdev bridge,id=net0,br=bridge0,helper=/usr/lib/qemu/qemu-bridge-helper-device virtio-net-pci,netdev=net0,mac=52:54:00:e6:85:03-monitor stdio# -device vmware-svga# -device VGA# -device virtio-vga-vga virtio)qemu-system-x86_64 "${args[@]}"
[link] [comments]
Post a Comment