description for command : chmod 777

2

I encountered an option for chmod:

chmod 777 /tyr/....

What is 777 for?

user44509

Posted 2010-08-04T15:32:06.510

Reputation: 403

5Do be aware that 777 is almost always wrong and a potential security risk. – Daenyth – 2010-08-04T15:49:40.157

how can I use it in safe side? – user44509 – 2010-08-04T15:50:34.773

Answers

8

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

dsolimano

Posted 2010-08-04T15:32:06.510

Reputation: 2 778

do you mean for User Group and Other? – user44509 – 2010-08-04T15:49:45.303

Yes, that's what I meant. – dsolimano – 2010-08-04T15:52:00.317

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).

Paused until further notice.

Posted 2010-08-04T15:32:06.510

Reputation: 86 075