62

Sometimes I see chmod commands that use four octal digits instead of three -- what is the optional first digit for? For example, chmod 777 is equivalent to chmod a+rwx; what's the same command for chmod 2777?

Michael Mrozek
  • 93,103
  • 40
  • 240
  • 233
prosseek
  • 8,558

1 Answers1

62

Please note that chmod 777 filename is the equivalent of chmod 0777 filename in this example.

The first octal digit sets the setuid, setgid and sticky bits (see this article for more details on setuid/setgid). octal 2 means to set group ID on the file. So, the equivalent would be to do a chmod a+rwx filename, then chmod g+s filename. The chmod info page does explain this in more detail.

jsbillings
  • 24,406
  • 7
    Nearly all implementations of chmod(1) can use commas in symbolic mode arguments. Thus, your equivalent of 2777 can be done in one command: chmod a+rwx,g+s filename. Or, more strictly (being sure to clear the setuid and sticky bits as the numeric mode would): chmod a=rwx,g+s filename. – Chris Johnsen Feb 05 '11 at 01:17