Batch recursive permission change with find and chmod
#change directories permissions
find / -type d -exec chmod 755 {} \;
#change files permission
find / -type f -exec chmod 644 {} \;
Batch recursive permission change with find and chmod
#change directories permissions
find / -type d -exec chmod 755 {} \;
#change files permission
find / -type f -exec chmod 644 {} \;