firs create a group, add users to that group se the folder to this group, recursively if this takes too long, use glob patterns to select the top k-levels
- sudo chgrp -R /checkpoint/geyang
- sudo chmod -R 2777 /checkpoint/geyang
- when running logger, use
umask 0
to make sure all files are written with777
permission.
For all instances writing, really need to umask 0
to make sure that files are writable from multible accounds. For exisiting files written by different user accounts, use chmod -R 2777
to amend the permissions.