description for command : chmod 777

I encountered an option for chmod:

chmod 777 /tyr/....

What is 777 for?

2

2 Answers

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 -

2

The octal permission 777 is equivalent to the symbolic permission ugo=rwx or as you would see it using ls -l:

rwxrwxrwx 1 user group 25500 2010-08-01 06:44 filename

Usually, you don't want the world (Other) to be able to write to a file.

For example, if a file is writeable by Other and executable by all (ugo+x) then some malicious user could change the file and it might have dire consequences the next time it's run.

Usually, for executables, 755 is sufficient. For other files, 644 is usually plenty, but sometimes they need to be group writeable (664) or readonly (444) or for the most privacy (400 or 600).

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like