Results 1 to 4 of 4
Gooday!
Quick question on user permissions, I'm not even sure if this is possible but any help/opinions is greatly appreciated.
I need to give one user full access to another ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 08-02-2005 #1Just Joined!
- Join Date
- Aug 2005
- Posts
- 8
giving a user access to another user's home directory
Gooday!
Quick question on user permissions, I'm not even sure if this is possible but any help/opinions is greatly appreciated.
I need to give one user full access to another users home directory. How would I do that?
I.E; user bob needs full read/write access to user bills home directory (/home/bill). How would a person grant that?
- 08-02-2005 #2
Put bob in bill's group and dole out permissions appropriately?
- 08-02-2005 #3
You could also create a group (example: homegroup), add the new user to it, use
, then change the permissions to give the new group full access withCode:chgrp homegroup <user's home directory>
.Code:chmod 775 <user's home directory>
That way, if you wanted to give more users access, you could add them to that group and it would be easy to keep track of who had permissions to the directory.There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson
- 08-02-2005 #4Just Joined!
- Join Date
- Aug 2005
- Posts
- 8
Thanks very much for the help, I'd attempted to the group permission but was having difficulties getting it to work correctly. Turns out the chmod was wrong. Thanks again.


Reply With Quote
