[607] in SIPB_Linux_Development
sipb-nfs:/u2/lockers/linux-athena permissions
daemon@ATHENA.MIT.EDU (Salvatore Valente)
Thu Jun 23 12:16:27 1994
Date: Thu, 23 Jun 94 12:16:07 -0400
To: rtfm-maintainers@MIT.EDU
Cc: linux-dev@MIT.EDU
From: Salvatore Valente <svalente@MIT.EDU>
The permissions on the linux-athena source tree are pretty awful.
Everything should be group linux-dev, that is:
chgrp -R linux-dev /u2/lockers/linux-athena
Although I actually have no idea whether that actually means anything
over nfs.
The directories should, as a general rule, be mode 775 and the files
should, as a general rule, be mode 444. Something like:
find /u2/lockers/linux-athena -type d -exec chmod 775 {} \;
find /u2/lockers/linux-athena -type f -exec chmod 444 {} \;
Actually, whatever gets me read access would be nice, and whatever
gets me write access would be even nicer.
Have a nice day.
-Sal.