
01-10-2009, 06:48 PM
|
 |
|
|
Join Date: Jan 2008
Location: WA, USA
Posts: 933
|
|
Quote:
Originally Posted by eemerge
on the " sudo chmod -R 755 /System/Library/Extensions && chown -R root:wheel /System/Library/Extensions " command , i get :Operation not permitted ...is it normal ?
|
The reason the above didn't work is because the "&&" doesn't carry over the sudo command. you need to type sudo twice so it should look like:
Code:
sudo chmod -R 755 /System/Library/Extensions/ && sudo chown -R root:wheel /System/Library/Extensions/
or like it was later stated...
Quote:
Originally Posted by lanceomni
Code:
sudo -s
chmod -R 755 /System/Library/Extensions
chown -R root:wheel /System/Library/Extensions
diskutil repairpermissions /
|
Just for future reference...
|