0

I'm hoping someone will be able to direct or help me understand how I can enable multiple users to edit the same files/folders in Ubuntu EC2 server (11.10).

I currently use Transmit, the Terminal window, and Wordpress to upload files to the WP folder. To use WP from it's "Dashboard panel" I find I have to chown the WP directory to the www-data user and whenever I want to upload files through Transmit to the WP directory I have to chown to the ubuntu user to allow this to happen.

I've tried chgrp to the WP folder upon adding www-data and ubuntu to a common group, but it still doesn't allow each user to edit/delete files without chown.

How can I allow a group of users in Ubuntu to be able to edit/delete files in the same directory?

Thanks for your help, Ryan

rs77
  • 125
  • 5

1 Answers1

0

If you set the set-Group-ID bit on a directory files created in that directory will inherit the same group as the directory.

If your umask is set to allow members of the group to edit files this should solve your problem.

Bram
  • 1,121
  • 6
  • 9
  • Thanks Bram for your response. I'll change the set-Group-ID for the files and edit umask details for users. Thanks! – rs77 Apr 19 '12 at 10:01
  • I found [this link](http://www.comptechdoc.org/os/linux/usersguide/linux_ugfilesp.html) where files and dir permissions are much better explained, incl umask. – hornetbzz May 10 '12 at 15:58