
10-22-2008, 09:42 AM
|
 |
|
|
Join Date: Jan 2008
Location: WA, USA
Posts: 933
|
|
hmmm. ok.. a few more helpful tips then...
NVinject 0.2.0 is an old injector. get the newest ones from http://nvinject.free.fr/downloads.php.
also, make sure you check the permissions of the kernel extensions that were just placed in the Extensions folder by running in Terminal:
Code:
sudo chmod -R 755 /System/Library/Extensions/ && sudo chown -R root:wheel /System/Library/Extensions/
or do what I do upon rebooting is to boot using the kernel flag -s and then
Code:
/sbin/mount -uw /
cd /System/Library/Extensions/
chmod -R 755 * && chown -R root:wheel *
cd ..
rm -Rf Extensions.mkext
reboot
This will force the individual extensions to be separately loaded and make sure they have the proper permissions. (same thing as running permission fix in Terminal and booting with -f)
EDIT: have you thought of trying EFI out?
|