Celeb Glow
general | March 24, 2026

change permission folder and underliyng folders chmod 553 to 555

i am helping a friend of mine setting up his nas remotely, unfortunately it seems the ftp program i use for this doesn't have access to some folders as permissions are set to chmod 553. unfortunately is is like impossible to go and change all folders manually to 555. how can i change chmod for the main folder and all underlying folders in one command?

Kind greats

Matthieu

1 Answer

Use the -R option:

chmod -R 555 main_dir_name

From chmod manpage:

-R, --recursive

change files and directories recursively

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy