-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To someone who use KVM-Opencore on unraid to install ventura #47
Comments
Thanks for the tips. Using the new qemu:commandline options I've been able to get Ventura installed and running with VNC on unraid. |
Personal experience update. After swapping the qemu:commandline sections as mentioned above, I was able to install and run on my unraid server. However, my CPU performance was pretty awful. The CPUs were running at 80% or so constantly, running |
Update, go things running smoothly. Here is the qemu:commandline options that work well for me. <qemu:commandline>
<qemu:arg value='-usb'/>
<qemu:arg value='-device'/>
<qemu:arg value='usb-kbd,bus=usb-bus.0'/>
<qemu:arg value='-device'/>
<qemu:arg value='isa-applesmc,osk=THE-OSK-YOU-EXTRACTED-GOES-HERE'/>
<qemu:arg value='-smbios'/>
<qemu:arg value='type=2'/>
<qemu:arg value='-cpu'/>
<qemu:arg value='Cascadelake-Server,vendor=GenuineIntel,+invtsc,-pcid,-hle,-rtm,-avx512f,-avx512dq,-avx512cd,-avx512bw,-avx512vl,-avx512vnni,kvm=on,vmware-cpuid-freq=on'/>
</qemu:commandline> |
Thanks to this guide I got Ventura 13.3 working on UNRAID 6.12 rc2 with VNC Gfx. |
Make sure you have these arguments, they're required for passthrough devices to work on macOS:
|
Yep, I have this already - this is my args..
|
Do you get the Tianocore boot logo on the screen at the start of guest boot? Because if not the guest UEFI is failing to init the card, so it's broken even before macOS starts loading. |
I get the oc boot picker, it auto selects the OS, shows the Apple logo with bar but the bar doesnt move and it just sits there. |
You didn't say if the guest UEFI appears or not. macOS can't use the GPU if the guest UEFI doesn't init it. If your GPU has a broken VBIOS (e.g. one that was already used to init the card during host boot) then you get this issue. You can press win/cmd+V at the OpenCore boot screen before picking the option to turn on Verbose Boot and see exactly where it's getting stuck. |
Fixed, don't ask me what it was - possibly a buggy BIOS. Reboot and all OK. |
Thanks for the tips. Its greate helpful for me. |
I am writing this comment to some who use nick's kvm-opencore to install ventura.
There are several problems that encounter over the course of installing ventura.
i recommend that installation should be divided into two phases.
The first phase is to install the system via vnc without passsing through any devices.
The second phase is to passing through devices and deal with problems that may ensue.
I encouter the first problem in first phase. When I use the stock loader and nvram, when I booted opencore, I can only see one the first item in the boot menu in the middle and can't see other items like recovery and rest nvram. It's very annoying. The solution is to use loader and nvram created by spaceinvader one in his github project macinabox to replace the stock ones. You need to edit the vm xml and be sure to save the path to the stock ones.
stock(my example, your's may be different)
spacinvaderone( you may need to change the path)
The second problem is stucking at "AppleKeyStoreTest" when booting ventura for the first time after installtion.
The problem is that you maybe use the wrong cpu pramaters that is sent to the vm.
The correct one, according to nick, is as follows if you are using intel. If you are using AMD, you can referrect nick's tutorial.
After installation is completed and passing through is cofigured.
I encounter the third problem which is that all the usb 1.1 (mouse,keyboard,bluetooth) devices are not working. Usb Devices like web cam are working.
The solution is setup a nec-xhci(qemu-xhci also works ) usb3.0 controller using the code below.
If you add this code through the gui interface, make sure to change port number to 7(attribute "ports"). The default generated code is "15" which is not working.
After using this controller , the passed through usb devices(not the usb devices connected using a passed through pci usb controllers. Passed through pci usb controllers are working out of the box if they are supported by macos ) will be working.
Here is an example:
If you are using usb2.0 webcam, I recommend that you add another usb2.0 controller and attached the web cam to this controller.
Because if you attached the webcam to a usb3.0 controller(like the one I Created above), it may not work. You may need to adjust the bus numbers to make it valid.
I am using a usb1.1 bluetooth module which is native supported in macos. Sometime when I boot up the system, I need to close it first and open it again before in order for it function properly.
That is all the problems that I encounter along the way.
Last but not least. I need to thank nick most heartedly for his hard work and help he gave me along the way.
Without him, All this would not be possible.
I am not expert on hackintosh. But I hope this comment may save people some time when installing ventura on Unraid.
@thenickdude
The text was updated successfully, but these errors were encountered: