Results 1 to 2 of 2
A good practice is to not let others than root have write access to /usr/local/src, but some programs like for instance Vuze need write access to that folder to update ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 09-19-2011 #1Just Joined!
- Join Date
- Jun 2011
- Posts
- 5
Permissions in applications
A good practice is to not let others than root have write access to /usr/local/src, but some programs like for instance Vuze need write access to that folder to update the programs. How to solve that issue?
- 09-24-2011 #2Banned
- Join Date
- Feb 2010
- Posts
- 31
You can change the group and then make the directory group writable and sticky:
chgrp wheel /usr/local/src
chmod g+ws /usr/local/src
Then make sure any application that needs write access is running as a user in the wheel group (you can of course use any group you want, wheel is just an example).Last edited by oz; 09-24-2011 at 12:25 PM. Reason: SPAM removal


Reply With Quote
