9951 explained code solutions for 126 technologies


findChange directory and all dependencies permissions


find /home/usr/ -type d -exec chmod 777 {} \;ctrl + c
/home/usr/

Base path to change permissions.

-type d

Search for directories (affects files too).

-exec

Execute next command.

chmod 777

Grants all permissions to all users (See how to pick numbers).

{}

Will be replaced by the path.

\;

Denotes the end of command.