Skip to content

Instantly share code, notes, and snippets.

@Pepeye
Created November 11, 2016 13:26
Show Gist options
  • Save Pepeye/5d6a22f76b341702ede8069572b4ed5d to your computer and use it in GitHub Desktop.
Save Pepeye/5d6a22f76b341702ede8069572b4ed5d to your computer and use it in GitHub Desktop.
Homebrew multi user
  1. Create a group brew and add Stan
  2. brew doctor (Allen checks if he installed brew correctly)
  3. sudo chgrp -R brew /usr/local (Change the group of homebrew installation directory)
  4. sudo chmod -R g+w /usr/local (Allow group members to write inside this directory)
  5. sudo chgrp -R brew /Library/Caches/Homebrew (Change the group of homebrew cache directory)
  6. sudo chmod -R g+w /Library/Caches/Homebrew (Allow group members to write inside this directory)
  7. sudo chgrp -R brew /opt (Change the group of the cask installation directory)
  8. sudo chmod -R g+w /opt (Allow group members to write inside this directory)
  9. brew doctor (Stan checks if he can use homebrew)

http://blog.strug.de/2012/06/my-homebrew-multi-user-setup/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment