View Single Post
 
Old 05-16-2009, 11:25 PM
nfoav8or's Avatar
nfoav8or nfoav8or is offline
 
Join Date: Jan 2008
Location: WA, USA
Posts: 933
there are many different ways to remove an unwanted kext. a few of them are:

in single-user mode (-s)
Code:
/sbin/mount -uw /
rm -Rf /Sytem/Library/Extensions/extension.kext 
rm -Rf /System/Library/Extensions.*
reboot
This deletes the kext and also clears it from the mkext "cache" file that is normally used to boot up the machine unless otherwise specified.

you can also do the same style within OS X after you have it running... I prefer Terminal so that's how I'll show it
Code:
sudo -s
rm -Rf /Sytem/Library/Extensions/extension.kext 
rm -Rf /System/Library/Extensions.*
reboot
This is just my personal preference when dealing with kexts, so feel free to try other ways.

EDIT:
Quote:
Originally Posted by lunfai View Post
How do I get the exact name of the kext?
Either use the Terminal command kextstat then compare these to what is in your /System/Library/Extensions/ folder... or look at your System Profile -> Software -> Extensions...


Last edited by nfoav8or; 05-16-2009 at 11:29 PM.
Reply With Quote