ディレクトリ配下のパーミッションを変更します。

chmod -R 777 .

findを使用して再帰的にパーミッションを変更する

findのオプションで-type dでディレクトリ、-type dでファイルのパーミッションを変更します。

ディレクトリだけをパーミッション変更する。

find . -type d -exec chmod 777 \{\} \;

ファイルだけをパーミッション変更する。

find . -type f -exec chmod 777 \{\} \;