Author: techfox9
Setting up a shared directory in Linux ..
Tuesday, August 5th, 2008 @ 5:14 pm
1. Add users a common group
2. Change ownership of directory to the common group
chown -R common:common /xyz/abc/
3. Set the group sticky bit
chmod -R g+s /xyz/abc/
See http://www.cyberciti.biz/faq/linux-setup-shared-directory for more details.