View Single Post
 
Old 01-10-2009, 06:48 PM
nfoav8or's Avatar
nfoav8or nfoav8or is offline
 
Join Date: Jan 2008
Location: WA, USA
Posts: 933
Quote:
Originally Posted by eemerge View Post
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 View Post
Code:
sudo -s
chmod -R 755 /System/Library/Extensions
chown -R root:wheel /System/Library/Extensions
diskutil repairpermissions /

Just for future reference...

Reply With Quote