kextfind -e -f /Library/StartupItems/* -not -bundle-id -i -substring 'com.apple.' -report -b -B -print
Or to do the same for loaded modules only (which are a possible immediate problem):
kextfind -e -f /Library/StartupItems/* -loaded -not -bundle-id -i -substring 'com.apple.' -report -b -B -print
To cure suspect (if you see them in a crash report or seeing nasty logs about them) kext modules - either find an appropriate upgrade, uninstall them or unload and remove them (e.g sudo kexunload /Library/Extensions/Dodgy.kext && rm /Library/Extensions/Dodgy.kext) and reboot.
You should also go and have look at the system logs (Console app) to see if there's nasty messages in there about dodgy goings ons.
Here's s of the known ones that cause issues:
- Doublecommand - Upgrade or uninstall it - The old version seemed to be the cause of a some USB related crashes.
- SmartSleep - Seems not to work properly and leaves quite trail in the log files.
No comments:
Post a Comment