Allowing read access to your directories

From Docswiki
Revision as of 17:03, 16 March 2024 by Dw34 (talk | contribs) (Created page with "Some of the clusters have permissions set on home directories that do not allow group read access. To change the access recursively use: chmod -R g+r /home/<your crsid> To m...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Some of the clusters have permissions set on home directories that do not allow group read access. To change the access recursively use:

chmod -R g+r /home/<your crsid>

To make all the subfolders accessible, you also need to add the executable bit. To do this for directories only use

find /home/<your crsid> -type d -exec chmod g+x {}