Okay, I've created a little problem on my system.  I have a partition that is shared among several different offices, so I set the permissions as follows:
 
chmod -R 1666 *
 
This resulted in all of the directories and files having the following permissions:
 
drw-rw-rwT directoryname
-rw-rw-rwT filename
 
Unfortunately, after the chmod, the only userid who could access any of the directory structure was root.  So, I executed
 
chmod -R 666 *
 
Now all of the directories and files have the following permissions:
 
drw-rw-rw- directoryname
-rw-rw-rw- filename
 
Still, the only userid who can access the directory is root.  Any ideas on how I should go about fixing this?
--
Steve

Reply via email to