76 lines
1.9 KiB
Markdown
76 lines
1.9 KiB
Markdown
---
|
|
title: Hackintosh
|
|
description:
|
|
published: true
|
|
date: 2019-10-08T15:08:47.856Z
|
|
tags:
|
|
---
|
|
|
|
ST3500...As
|
|
|
|
192.168.0.143
|
|
|
|
MultiBeast
|
|
|
|
Problems with nvidia driver
|
|
|
|
Drivers
|
|
1. Network
|
|
Intel -> MausiEthernet 2.2.0
|
|
|
|
Customize
|
|
1. System Definitions
|
|
iMac -> 17.1
|
|
|
|
Nvidia Web Driver
|
|
|
|
1. Enable Web Driver
|
|
|
|
1. Mount EFI Partition
|
|
diskutil list
|
|
mkdir /Volumes/EFI
|
|
sudo mount -t msdos /dev/disk0s1 /Volumes/EFI
|
|
|
|
2. Open /Volumes/EFI/EFI/CLOVER/config.plist with text edit, Xcode, or Plist Editor Pro
|
|
3. Edit as shown below:
|
|
|
|
Code (Text):
|
|
```
|
|
<key>SystemParameters</key>
|
|
<dict>
|
|
<key>InjectKexts</key>
|
|
<string>YES</string>
|
|
<key>InjectSystemID</key>
|
|
<true/>
|
|
<key>NvidiaWeb</key>
|
|
<true/>
|
|
</dict>
|
|
```
|
|
4. Remove Boot/Arguments/nvda_drv=1 if necessary
|
|
5. Save and reboot
|
|
|
|
2. Solr black screen problem
|
|
|
|
https://www.tonymacx86.com/threads/solving-nvidia-driver-install-loading-problems.161256/
|
|
|
|
Open Terminal
|
|
Enter this command (it is one line)
|
|
|
|
sudo nano /System/Library/Extensions/AppleGraphicsControl.kext/Contents/PlugIns/AppleGraphicsDevicePolicy.kext/Contents/Info.plist?
|
|
Arrow down to where you see `<key>ConfigMap</key>`
|
|
For the iMac15,1 locate the board-id "Mac-42FD25EABCABB274" and change string below it from "Config2" to "none". For the MacPro6,1 you will do the same thing but for the board-id "Mac-F60DEB81FF30ACF6". For the iMac17,1 you'll have to see which board-id is declared in your config.plist SMBIOS: "Mac-B809C3757DA9BB8D" or ****"Mac-65CE76090165799A"**** or "Mac-DB15BD556843C820" and change the appropriate entry to "none".
|
|
Save the file by pressing Ctrl+O, then enter.
|
|
Exit by pressing Ctrl+X
|
|
Rebuild the kernel cache using the following two commands in terminal:
|
|
|
|
|
|
sudo kextcache -system-prelinked-kernel
|
|
sudo kextcache -system-caches?
|
|
Reboot
|
|
|
|
SIP is already disabled for kext signature checking
|
|
|
|
3. Install Nvidia Web Drivers from web
|
|
|
|
|