Q: File Sharing between user accounts in Lion
Every file created within the Shared folder is automatically a "read-only" for all other users.
How can I make all users able to edit all files within the Shared folder? - The "Apply to enclosed items" does only apply settings to existing files. This means that for every new file you add, you have to press "Apply to enclosed items". - Surely there must be a way to apply the folders setting to all future content?
All I want is for this folder to function as any external harddrive; accessable by all accounts without any restrictions!
MacBook Pro, Mac OS X (10.7.3)
Posted on Apr 6, 2012 6:53 AM
/Users/Shared has POSIX permission drwxrwxrwt
I'll leave that as it is.
But you can create a subdir and name it whatever you like giving everyone full access.
In my example I'll name it World.
Open Terminal and type
sudo mkdir /Users/Shared/World
type your password when asked. This create a folder World inside Shared folder.
Now type all on one line
sudo chmod +a "everyone allow list,search,add_file,add_subdirectory,delete_child,file_inherit,directory_inher it" /Users/Shared/World
type your password when asked. This set ACL to folder World for full access to every.
Posted on Apr 6, 2012 8:13 AM