Chmod: Difference between revisions From Online Manual

Jump to: navigation, search
(Use the "listette" {{SMF files and directories}})
(re-organized for def/detail)
Line 1: Line 1:
{{DISPLAYTITLE:chmod}}
{{DISPLAYTITLE:chmod}}
The chmod command is found primarily on Unix-like machines. It is used to modify the permissions of a file or directory.
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.
 
<noinclude>


Syntax: chmod mode file<br>
Syntax: chmod mode file<br>
Line 24: Line 26:
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.
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.


In SMF, some files and directories must be writeable by users other than the owner for complete and proper operation. {{SMF files and directories}}
Files and directories which must be writeable by users other than the owner are: {{SMF files and directories}}


<noinclude>
[[Category:SMF terminology]]
[[Category:SMF terminology]]
</noinclude>
</noinclude>

Revision as of 14:22, 17 January 2014

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: