Pour appliquer ces autorisations à un répertoire :
chmod 755 directory_name
Pour appliquer à tous les répertoires à l'intérieur du répertoire courant :
chmod 755 */
Si vous souhaitez modifier tous les répertoires et sous-répertoires, vous devrez combiner find avec chmod :
find . -type d -exec chmod 755 {} +
Pour drwxr-xr-x c'est :
chmod 755 the_path_to_target
Pour drwxrwxr-x c'est :
chmod 775 the_path_to_target