View Single Post
 
Old 12-30-2008, 08:04 PM
nfoav8or's Avatar
nfoav8or nfoav8or is offline
 
Join Date: Jan 2008
Location: WA, USA
Posts: 933
Quote:
Originally Posted by Meteleskum View Post
... And if i would like to do from TERMINAL at DVD, the "the folder doesn't exist".
make sure you are removing from the proper place. Because you are using the DVD to boot, if you point to "/System/Library/Extensions/" it will assume you are talking about the DVD's root structure.. point it to your hard drives volume... for the following I will use "MacHD" as the name of your hard drive (just change accordingly) and assume you are booting from your DVD and running Terminal:

Code:
cd /Volumes/MacHD/System/Library/
rm -Rf Extensions/AppleIntelCPUPowerManagement.kext
rm -Rf Extensions.*            <don't forget the period here!>
using the asterisk we are telling the system to look for any file extension here with Extensions as the prefix so this will cover all the mkext and kextcache files mentioned above.

now reboot into your system and it should work normally. (but still boot with "-v" anyways so you can see that your hardware is being recognized and if any more hiccups emerge.

Reply With Quote