Created
April 5, 2019 09:57
-
-
Save patrickgill/bfcb82bb0fadfcc572b86c9d53aee20b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Paths | |
/System/Library/Extensions/ | |
/Library/Extensions/ | |
# see what third-party extensions are currently there on your machine. | |
Kextstat | grep –v com.apple | |
# find the file defining a kext you only know the bundle name of. | |
kextfind -b <bundlename> | |
kextfind -b com.AmbrosiaSW.AudioSupport | |
# unload the kext my using the following command. | |
sudo kextunload /System/Library/Extensions/NAMEOFTHEKEXT.kext | |
# Installer logs | |
/var/log/install.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment