chmod From Online Manual

Revision as of 20:54, 18 January 2014 by Illori (talk | contribs) (cant redirect users to the same page for more info... plus mixed tags removed)
Jump to: navigation, search

The chmod command is found primarily on Unix-like machines. It is used to modify the permissions of a file or directory. This is important because, for SMF to work properly, some files and directories must be writeable by users other than the owner.

Syntax: chmod mode file
Example: chmod 766 readme.txt

Each digit in the mode parameter represents the permissions for a user or a class of users:

  • the first digit corresponds to the owner of the file
  • the second digit corresponds to the file's group
  • the final digit corresponds to everybody else.


There are eight digits that can be used in the mode parameter.

  • 0 - Deny all
  • 1 - Execute Only
  • 2 - Write Only
  • 3 - Execute and Write
  • 4 - Read Only
  • 5 - Read and Execute
  • 6 - Read and Write
  • 7 - Allow All

On a web server, files are usually set to 644. This indicates that the file owner can read and write to the file, while everyone else can only read it. Directories are commonly set to 755. This indicates that the directory owner has full control, while everyone else can read and execute the files within it.

Files and directories which must be writeable by users other than the owner are:

  • /attachments
  • /cache


Advertisement: