kextunload SD卡重装问题


3

因此,我得到了其中一种SD卡嵌入式安装座,但偶尔会自动弹出。我试图解决这个通过给出kextunload

输入:

sudo kextunload -b /System/Library/Extensions/AppleSDXC.kext

返回:

(kernel) Kext /System/Library/Extensions/AppleSDXC.kext not found for unload request.
Failed to unload /System/Library/Extensions/AppleSDXC.kext - (libkern/kext) not found.

Answers:


1

bundle identifier使用-b参数时,您需要指定。在这种情况下,包标识符为com.apple.driver.AppleSDXC

sudo kextunload -b com.apple.driver.AppleSDXC

如果返回相同的错误消息,则说明内核扩展未加载。

您可以使用以下方法查看此信息 kextstat | grep -e SDXC

无论如何,要找到Bundle ID:

/System/Library/Extensions/AppleSDXC.kext/Contents/Info.plist 捆绑包标识符存储在BundleID键下:

<key>CFBundleIdentifier</key> <string>com.apple.driver.AppleSDXC</string>


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.