chmod -R
is going to do it on all existing files, not just directories.
To target all the .local directories you can use find + xargs
find .local/ -type d | xargs chmod u+wrx
Hi James:
Sorry, fat fingers I sent before I finished the last bits of command configuration settings that I did below.
Permission settings for Apache:# chmod -R 755 sites# cd/ home
# chmod 711 user_name
SELinux setting changes:# /usr/sbin/setsebool -P httpd_enable_homedirs 1
# chcon -R -t httpd_sys_content_t sites
and also:# /usr/sbin/setsebool -P httpd_enable_cgi 1
Any help is greatly appreciated. Thanks
--
James
used.xbel', but failed: Failed to create file '/root/.local/share/recently-used.xbel.F2PF1V': No such file or directoryyou must:
(gedit:2673): Gtk-WARNING **: Attempting to set the permissions of `/root/.local/share/recently-used.xbel', but failed: No such file or directory
chmod -R
is going to do it on all existing files, not just directories.
To target all the .local directories you can use find + xargs
find .local/ -type d | xargs chmod u+wrx