Just about there. Users can log in, create files, and move files fine back and forth from Windows to Solaris while preserving permissions).

The last stumbling block is that files which are FTP'ed to the server from Windows do not have the right permissions.


At 07:11 AM 7/30/2003 -0700, you wrote:
chgrp -R webgroup /var/web
chmod 775 /var/web
chmod g+s /var/web
find /var/web -type d -exec chmod 775 {} \;
find /var/web -type d -exec chmod g+s {} \;

Then, in each users' .profile, add:
umask 002

The additional 'chmod' should set the setgid bit for each directory.
The umask will force new files to be created with 'g+w', which is what
you want.

_______________________________________________ Solaris-Users mailing list [EMAIL PROTECTED] http://www.filibeto.org/mailman/listinfo/solaris-users

Reply via email to