Linux – description for command : chmod 777

chmodfile-permissionslinux

I encountered an option for chmod:

chmod 777 /tyr/....

What is 777 for?

Best Answer

The world, the file's group, and the file's owner can read, write, and execute the file. The 777 specifies that using octal notation.

For further reading - http://en.wikipedia.org/wiki/File_system_permissions#Octal_notation

Related Question