January 2016 Archives
Fri Jan 22 09:38:00 ICT 2016
ACL for Samba
Some files are stored in banyan:/home/pc-application to be accessible from Windows machines under the Samba share \banyan\\application (mounted as drive J: in the laboratory.
For the files to be readable by everyone, the ACL must be of the correct type, namely 0744. This can set on banyan with the commands:
cd directory where you stored the files find . -type f -exec chmod 744 {} \;
For the directories to be readable by everyone, the ACL must be of the correct type, namely 0755. This can set on banyan with the commands:
cd directory where you stored the files find . -type d -exec chmod 755 {} \;