In the ideal world, each file would have a list of users who can
access it, and the file's owner could just add or
delete users from that list at will. Some secure versions of Unix are
configured this way, but standard Unix systems don't
provide that degree of control. Instead, we have to know how to
juggle Unix file permissions to achieve our ends.
For example, suppose I have a file called ch01
that I want edited by another user, joe. I tell
him that the file is /books/ptools/ch01, but he
reports to me that he can't access it.
joe % cd /books/ptools
joe % more ch01
ch01: Permission denied
joe % ls -l ch01
-rw------- 1 lmui 13727 Sep 21 07:43 ch01
joe asks me (lmui) to give
him read and write permission on the file. Only the file owner and
root can change permission for a file. Now,
what's the best way to give joe
access to ch01?
The fastest and most sure-fire way to give another user permission is
to extend read and write permission to everyone:
lmui % chmod 666 ch01
lmui % ls -l ch01
-rw-rw-rw- 1 lmui 13727 Sep 21 07:43 ch01
But this is sort of like leaving your front door wide open so your
cat can get in and out. It's far better to extend
read and write access to a common group instead of to the entire
world. I try to give joe access to the file by
giving group read and write access:
lmui % chmod 660 ch01
lmui % ls -l ch01
-rw-rw---- 1 lmui 13727 Sep 21 07:43 ch01
But joe reports that it still
doesn't work:
joe % more ch01
ch01: Permission denied