Compartilhe em Sua Rede Social:Share on FacebookShare on Google+Tweet about this on TwitterShare on LinkedIn

Comando SSH:

 

Para todas as contas:

 

cd /home

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

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

 

Para uma determinada conta:

 

cd /home/login

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

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