Allowing read access to your directories: Difference between revisions

From Docswiki
Jump to navigation Jump to search
(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...")
 
(No difference)

Latest revision as of 16:03, 16 March 2024

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 {}