Re: Serious Problems


Subject: Re: Serious Problems
From: Robert Bell (rbell@tv.rsc.raytheon.com)
Date: Thu Jun 08 2000 - 15:12:27 EDT


> > And since you do not execute "MAC" files or programs on the netatalk host,
> >
> > I would do a
> >
> > chmod -R 2666 (do allow everyone access including
> > when someone creates new folders)
> > or
> > chmod -R 2660 (do allow only those in the group to access
> > including when someone in the group creates a sub-folder)
>
> You need +x to enter a directory....

you are right.

If using Linux do both of the following find commands,

find . -type d -print0 | xargs -0 chmod 2777 (or 2770 or 2775)
find . ! -type d -print0 | xargs -0 chmod 2666 (or 2660 or 2664)

first numbers are for read and write access by everyone
second numbers are for read and write by group only
third numbers are for read and write by group, and read by everyone.



This archive was generated by hypermail 2b28 : Wed Jan 17 2001 - 14:31:01 EST