Quote:
Originally Posted by AKA_Ben
To change the owner and group properties for directories/apps/files you'll need to open up the directory in PuTTY and execute a chmod command.
I forget the specific commands though so I guess I'm not much help. You'll use "chmod root /Applications/Installer" to set the owner but I forgot the group.
|
Close, but the correct command is chown, change ownership.
You should run something like this
Code:
chown -R root /Applications/Installer
if you feel you want to change the group too, then do this
Code:
chown -R root:wheel /Applications/Installer
It's kind of silly to put it into the wheel group, but if you want go ahead.
I would suggest
Code:
chown -R root:admin /Applications/Installer
be the command you run.