Jump to content
8 posts in this topic

Recommended Posts

To fix your kext, first get the correct name of the kext from the error message, then go to Terminal and do the following:

 

cd /System/Library/Extensions
sudo find (name-of-kext) -type d -exec /bin/chmod 0755 {} \;
sudo find (name-of-kext) -type f -exec /bin/chmod 0644 {} \;

when does this happen? At startup or whne you try and run a program or something?

 

It always happens at startup

 

 

Rammjet, i can´t complete the code because the system ask me for password but i cant type it. Don´t know why.

 

2oh2.th.png

 

thank´s.

Rammjet, i can´t complete the code because the system ask me for password but i cant type it. Don´t know why.

What do you mean you can't type it? You don't have fingers? Keyboard is broken?

 

When you type the password, the cursor doesn't move and no asterisks or anything appears. Just type the password and hit <Enter>

when i try the password i just can´t. The keyboard doesn´t respond.

I'm not sure how the keyboard is supposed to respond.

 

As I already said, while you are typing the characters of the password, absolutely nothing is going to happen. The cursor won't move on the screen. No characters will appear on the screen. It will appear dead until you hit the <Enter> key.

 

BTW, you are typing some things unnecessarily. You don't need to type "/System/Library/Extensions/" as part of the kext name. The first line (the cd line) took care of that:

 

cd /System/Library/Extensions
sudo find AppleVIAATA.kext -type d -exec /bin/chmod 0755 {} \;
sudo find AppleVIAATA.kext -type f -exec /bin/chmod 0644 {} \;

×
×
  • Create New...