Ubuntu – problem with chmod command

chmodpermissions

I don't know what is happening

experimentx@workmateX:/var/www$ sudo chmod 0777 -r /var/www/

chmod: cannot access `0777': No such file or directory

experimentx@workmateX:/var/www$ 

Best Answer

Use this:

sudo chmod 0777 -R /var/www/

-R instead of -r.