Leoyzen

Members
  • Posts

    173
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Leoyzen

  1. @chalbolyNot required. But I'd prefer add it in order to staying the same with standard hackintosh procedure.
  2. Finnally got irregular number of cores assignments work. Details can be foud in git issues. I will update the manual and config.plist later. 3-cores/6-threads <vcpu placement='static' current='6'>8</vcpu> <vcpus> <vcpu id='0' enabled='yes' hotpluggable='no' order='1'/> <vcpu id='1' enabled='yes' hotpluggable='yes' order='2'/> <vcpu id='2' enabled='yes' hotpluggable='yes' order='3'/> <vcpu id='3' enabled='yes' hotpluggable='yes' order='4'/> <vcpu id='4' enabled='yes' hotpluggable='yes' order='5'/> <vcpu id='5' enabled='yes' hotpluggable='yes' order='6'/> <vcpu id='6' enabled='no' hotpluggable='yes'/> <vcpu id='7' enabled='no' hotpluggable='yes'/> </vcpus> <cputune> <vcpupin vcpu='0' cpuset='6'/> <vcpupin vcpu='1' cpuset='14'/> <vcpupin vcpu='2' cpuset='7'/> <vcpupin vcpu='3' cpuset='15'/> <vcpupin vcpu='4' cpuset='5'/> <vcpupin vcpu='5' cpuset='13'/> </cputune> <cpu mode='host-passthrough' check='none'> <topology sockets='1' cores='4' threads='2'/> </cpu> 5-cores/5-threads <vcpu placement='static' current='5'>8</vcpu> <vcpus> <vcpu id='0' enabled='yes' hotpluggable='no' order='1'/> <vcpu id='1' enabled='yes' hotpluggable='yes' order='2'/> <vcpu id='2' enabled='yes' hotpluggable='yes' order='3'/> <vcpu id='3' enabled='yes' hotpluggable='yes' order='4'/> <vcpu id='4' enabled='yes' hotpluggable='yes' order='5'/> <vcpu id='5' enabled='no' hotpluggable='yes'/> <vcpu id='6' enabled='no' hotpluggable='yes'/> <vcpu id='7' enabled='no' hotpluggable='yes'/> </vcpus> <cputune> <vcpupin vcpu='0' cpuset='6'/> <vcpupin vcpu='1' cpuset='14'/> <vcpupin vcpu='2' cpuset='7'/> <vcpupin vcpu='3' cpuset='15'/> <vcpupin vcpu='4' cpuset='8'/> </cputune> <cpu mode='host-passthrough' check='none'> <topology sockets='1' cores='8' threads='1'/> </cpu>
  3. @fr05ty @glennv I update the git repo(add MCEDisabler) and tested it in 10.15.4, it's all fine. Did you add Lilu/WEG/AppleALC to your kexts folder and enable it in config.plist? Did you put all others things under repo EFI to your EFI folder?(Because from your logging, the ACPI staffs is missing)
  4. @fr05tySeems navi/vega reset bug.You can try using the cusotm kernel. https://forums.unraid.net/topic/82625-kernelcustom-kernel-build-with-some-useful-patches-20191110-update-support-for-680rc5/
  5. @fr05tyPlz, add '-v debug=0x100 keepsyms=1' to your boot-args and post your error log.We can't help with this little information.
  6. @ameenoSee the main thread, there is a github link which contains the most recents opencore configuartion, you can start from it.
  7. I finnally get newer cpu generation works with topology defined, but still can't set odd or imregular cores like 5/10, 6/12.Only 4/8 or 8/16 works now.Maybe more patches needed too.
  8. Add `agdpmod=pikera` to boot-args section in config.plist. Use iMacPro1,1 or MacPro7,1 is the ONLY option for us(who using Hackintosh VM).You will face more issues when using others SMBios.
  9. I just made a opencore github (links here)to helping people quick start building a hackintosh VM, also we can track, discuss issues there. The repo contains most common technics which we discuss here. And this thread will be a support thread.
  10. @beemacWhy don't you compiling the kernel without custom option but just the standard .config from unraid server to test the building prodecure? If it can boot without issues, then it must be something wrong with "CONFIG_NO_HZ_FULL" enabled. In my opinion, the procedure is right, I build it many times without problems. The only problem is limetech forget adding some necessary options in release .config sometimes. (In .config from 6.8.3, they forget add Intel 10Gbps NIC support/ixgbe in .config), I must diff the changes from previous version to see if everything is correct.
  11. @beemacYour procedure should be fine.By the way, the latest unRaid config is not the one from /usr/src. They missed some important things in .config( like ixgbe support).But I don't know what's wrong with your VM Manager.Can you boot with the kernel I posted?
  12. @beemacYou did it wrong. You should use ** /usr/src from unraid ** instead of using the one from ubuntu.Copy the patches from /usr/src from your unraid server and try again.
  13. @beemac No, I don't use slackware because the system is too stable also old for me. I compiled successfully both Ubuntu and Arch, any disribution will works. @phat_cowYes.Backup before replacing them.
  14. @beemac Do not build the kernel in your unraid server , try build it in a linux VM and follow the procedure in my main thread.
  15. Can we have nfsv4 support in 6.9.0?Just enable kernel options and do some UI adjustment.
  16. NFSv4 is out for almost two decades, we are now outdated for a long time. I found that nfs-utils of slackware alread have NFSv4 support (but not enough), enable support and do some unraid ajustments should work.(looking at this thread). It will be helpful for those NFS heavy user.
  17. 6.8.3 is out, here is the new kernel and some tweaks: Add Vega Reset Patch Add Navi Reset Patch Enable NFSv4 in kernel(God damned, we finally get nfsv4 to work) Add R8125 out tree driver. AMD onboard audio/usb controller flr patch, you can now passthrough them. Provide two version (linux-5.5.8 and linux-4.19.108) in case of bug. Notice that the linux-4.19.108 version still don't have AMD Zen 2 suppport. For those who want to use NFSv4: NFSv4 have some change compared to v2/v3, it must have root share and the nfs-utils/unRaid can't handle it well for now.You must add this script to UserScript Plugin triggered when array start: #!/bin/bash # Add NFSv4 root echo '"/mnt/user/" -async,no_subtree_check,fsid=0 *(sec=sys,rw,insecure,anongid=100,anonuid=99,all_squash,crossmnt)' >> /etc/exports # Load configuration exportfs -ra # Tunning mkdir -p /var/lib/nfs/v4recovery sed -i 's@/usr/sbin/rpc.nfsd 8@/usr/sbin/rpc.nfsd 32@g' /etc/rc.d/rc.nfsd # Restart Services /etc/rc.d/rc.nfsd restart And if you have trouble mount nfsv4, you can specify mount vers=3 on client. 6.8.3-4.19.108.zip 6.8.3-5.5.8.zip
  18. @swallaceIt seems more related to vBIOS issues.Can you just download difference version vBIOS and just put it in your xml to see if it works?(do not flash to your graphics)
  19. @swallacePlease uplaod your EFI folder. 1. Lilu loaded, but not work, it is strang. 2. Pulse should work OOB, so something must be wrong.
  20. @limetech Do we have an option to turn on/off Hard Links support per share? I have some share must enable hard links support (like PT/BT and emby medias), but others won't needed (like coding share), but the stale problem reallly annoying.
  21. We can now using stock OVMF from qemu (unraid) instead of using third-party patched OVMF by using apfs.efi and opencore. Detail can be found here. So there is no need maintain another OVMF-VARS/CODES any more.
  22. @swallace It is very strang, you don't even have metal support according to your screenshots. Check this: 1. What is your Lilu/WEG version? Don't use clover updater, manually download from github and place them into kext/others. 2. What is the BIOS version of your graphic?Download from techpower and add it to your xml. 3. Then check your Lilu/WEG is loaded(you can get the log from hackintool)
  23. Do you do all the things I've mentioned? Make sure your smbios is MacPro7,1/iMacPro1,1 Using Latest Lilu/WEB Put the audio and gfx in same bus If you do so, post your screenshot of sysinfo and your graphic vendor I'm using opencore but 0.5.5, some problem I can't solve, maybe your have some ideas? My 10gb nic not work in bare metal hackintosh(smalltree driver said there is "cable unpluged", but works well in a VM... I can't get hotkey working neither VM nor bare metal.... With PollAppleHotKeys=yes and KeySupport=yes. I think maybe I should make a git repo for hackintosh VM user to build a bare metal hackintosh.