Home » Questions » Computers [ Ask a new question ]

chmod problems with setting others to read

chmod problems with setting others to read

I have a directory tree with the permission for others as none. I need to change it to read.

Asked by: Guest | Views: 167
Total answers/comments: 1
Guest [Entry]

"You need to set the directories o+x.
EDIT: To do this recursively, type

find . -type d -exec chmod o+x {} \;"