How can I make a common directory where clients on any box can read, copy and delete files freely ? |
You can make a directory in server, say /home/share and open its mode to everyone like this:
1. mkdir /home/share
2. chmod a+rwx /home/share
If you want the file created by some user and can only be deleted by that user, you have to add this:
3. chmod o+t /home/share
i.e. make it directory "sticky", like dir /tmp/
Then every clients can use the directory /home/share.
|
|