Recently one of the new admin come across classic problem of "Sharing Directories Among Several User". I explained him the commands and decided to write this. Although concept is almost same as Linux/UNIX; still people comes across problem. Here is scenario:
- /home/project1 : Shared directory
- usr1, usr2, ... usrN : Would like to work and share files in /home/project1 directory
- padmin : Main project administrator
(A) Create a shared directory /home/project1
# mkdir /home/project1
(B) Create the group project1
# pw group add project1
(C) Add user padmin and setup password:
# pw user add -n padmin -d /home/project1 -g project1 -m # passwd padmin
(D) Add rest of users to group project1
# pw user add -n usr1 -d /home/project1 -g project1 # pw user add -n usr2 -d /home/project1 -g project1
....
# passwd usr1 # passwd usr2
...
(E) Setup permission on /home/project1 directory as follows:
a) Setup group ownership to project1 group:
# chown -R padmin.project1 /home/project1
b) Setup permission on directory i.e. setup full permission for group and owner on a directory:
# chmod -R 775 /home/project1
c) Setup sgid bit. So what is sgid bit? Normally when ever you creates file in a directory it belong to
default group of user. When a file is created in a directory with the sgid bit set it belogns to the same group as the directory. The result is all users of project1 group can create/alter files in /home/project1 directory:
# chmod -R 2775 /home/project1
OR
# chmod -R g+s /home/project1
Now each user can login over ssh and use the directory for project. Note if you wish to add an existing users to project1 group for sharing files then use pw command as follows:
# pw user mod -n username -G project1
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop










{ 0 comments… add one now }