Search code examples
filefile-permissions

What is the file permission code to give all users the rights to read, write & execute on a folder


can someone please tell me what is the permission code to give everyone literally everyone the permission to read, write & execute files on my server. The reason I am doing this is just for testing purposes so don't scream at me in the comment section for security and stuff. So all I want to know is the permission code for this like there is also 0755 which only gives permission to the owner to read, write, & execute the files is there any permission code which allows anyone to read, write, & execute the files?


Solution

    1. It's an Octal representation of the binary yes/no permissions (read, write, execute) with each digit representing respectively Owner/User, Group and World/Other.

    http://permissions-calculator.org/decode/0755/

    http://permissions-calculator.org/decode/0777/