macOS 10.13安装中常见的问题及解决方法

10.13的系统引导中,万一发生了kernel panic,也就是内核崩溃后,Lilu输出的信息过多,造成无法看清内核崩溃时的问题所在,这里教大家一种方法,去掉Lilu的输出信息,还原造成内核崩溃后面的真相

解决方法1:

使用文本编辑器打开config.plist文件,

<key>KernelToPatch</key>

下面添加:

<array>
    <dict>
        <key>Comment</key>
        <string>Disable panic kext logging on 10.13 Debug kernel</string>
        <key>Disabled</key>
        <false/>
        <key>Find</key>
        <data>
        sABMi1Xw
        </data>
        <key>MatchOS</key>
        <string>10.13</string>
        <key>Replace</key>
        <data>
        SIPEQF3D
        </data>
    </dict>
    <dict>
        <key>Comment</key>
        <string>Disable panic kext logging on 10.13 Release kernel</string>
        <key>Disabled</key>
        <false/>
        <key>Find</key>
        <data>
        igKEwHRE
        </data>
        <key>MatchOS</key>
        <string>10.13</string>
        <key>Replace</key>
        <data>
        igKEwOtE
        </data>
    </dict>
</array>

解决方法2:

使用Clover Configurator打开config.plist - Kernel and Kext Patches - kernelToPatch,新添加:

Comment:    Disable panic kext logging on 10.13 Debug kernel
Find:       b0004c8b 55f0
Replace:    4883c440 5dc3
MatchOS:    10.13
Comment:    Disable panic kext logging on 10.13 Release kernel
Find:       8a0284c0 7444
Replace:    8a0284c0 eb44
MatchOS:    10.13

macOS升级后应该先插入啥?

有些群友通过App Store更新了系统后,就会在群里提出更新后某些功能不正常了,我的方法是直接使用Kext Utility重建缓存再重启,包治百病!比如:HDMI Audio输出没了,内屏背光亮度不可调等等。

安装10.13时卡在Service only ran for 0 seconds. Pushing respawn out by 10 second

此种现象常见于笔记本机型,由于10.13中的DSDT屏蔽独显方式失效,现使用  hotpatch 方式进行独显屏蔽。

使用方法:
将 SSDT-Disable-DGPU.aml 复制到/EFI/CLOVER/ACPI/patched 目录下即可

解决安装时提示 OSInstall.mpkg似乎已缺失或已损坏 的问题

删除 /EFI/CLOVER/drivers64UEFI/EmuVariableUefi-64.efi 和 /EFI/ 分区根目录下的 nvram.plist

修改SMBIOS,使用Clover Configurator将机型设置为2012年及以后机型

解决10.13 NVIDIA安装Web Driver黑屏问题

解决方法:

在 /EFI/CLOVER/kexts/Other 目录下添加驱动

解决10.13下某些机械硬盘无法读取的问题

使用Clover Configurator打开config.plist - Kernel and Kext Patches - KextsToPatch,新添加:

Name:       AppleAHCIPort
Comment:    修复ICH10芯片 I/O Error 错误
Find:       4585F60F 95C289C8 83E0FE66 85C9780F 84D2750B
Replace:    89C883E0 FE6685C9 0F98C141 08CC9090 9090750B
MatchOS:    10.13.x

另一种格式:

<dict>
    <key>Comment</key>
    <string>修复ICH10芯片 I/O Error 错误</string>
    <key>Disabled</key>
    <false/>
    <key>Find</key>
   <data>RYX2D5XCiciD4P5mhcl4D4TSdQs=</data>
    <key>MatchOS</key>
    <string>10.13.x</string>
    <key>Name</key>
    <string>AppleAHCIPort</string>
    <key>Replace</key>
    <data>iciD4P5mhckPmMFBCMyQkJCQdQs=</data>
 </dict>

解决10.13(High Sierra)/10.12(Sierra) Clover开机出现8个苹果

使用Clover Configurator打开config.plist - Kernel and Kext Patches - KextsToPatch,新添加:

Name:       IOGraphicsFamily
Comment:    10.12+-第二阶段花屏
Find:       01000075 25
Replace:    010000eb 25
MatchOS:    10.12.x
Name:       IOGraphicsFamily
Comment:    10.13+-第二阶段花屏
Find:       01000075 22
Replace:    010000eb 22
MatchOS:    10.13.x

另一种格式:

<dict>
	<key>Comment</key>
	<string>10.12+-第二阶段花屏补丁</string>
	<key>Disabled</key>
	<false/>
	<key>Find</key>
	<data>
	AQAAdSU=
	</data>
	<key>MatchOS</key>
	<string>10.12.x</string>
	<key>Name</key>
	<string>IOGraphicsFamily</string>
	<key>Replace</key>
	<data>
	AQAA6yU=
	</data>
</dict>
<dict>
	<key>Comment</key>
	<string>10.13+-第二阶段花屏补丁</string>
	<key>Disabled</key>
	<false/>
	<key>Find</key>
	<data>
	AQAAdSI=
	</data>
	<key>MatchOS</key>
	<string>10.13.x</string>
	<key>Name</key>
	<string>IOGraphicsFamily</string>
	<key>Replace</key>
	<data>
	AQAA6yI=
	</data>
</dict>

Nvidia WebDriver驱动小版本更新后使用之前版本的命令

方法:

打开终端,输入命令:

sudo plutil -replace IOKitPersonalities.NVDAStartup.NVDARequiredOS -string $(sw_vers -buildVersion) /S*/L*/E*/NVDAStartupWeb.kext/C*/Info.plist

猜你喜欢

转载自blog.csdn.net/chiwang_andy/article/details/129953396
今日推荐