How do I get it so that I can add an application to my application folder without having to type in my password everytime?
There are two admins on this computer, and I am one of them. When prompted, I am required to type in my own name and password. How do I fix it from here?
ls -l / | grep Applications
drwxr-xr-x+ 82 kellypeters 501 2788 11 Nov 17:53 Applications
sudo chmod -R +0020 /Applications
sudo chown -R root:admin /Applications
Repair permissions before toying around in Terminal.
The chown command is correct to get the ownership back how it should be. The chmod command is supposed to get admin's back write permission, but it may not be correct. I'm just guessing what it would be from the man page. I really don't use chmod often enough to know.
And what calderone said. Don't try with those scripts unless the Repair Permissions option in Disk Utility can't fix it.
chown root:admin /Applications
chmod ug=rwx /Applications