Chmod: Difference between revisions From Online Manual

Jump to: navigation, search
(Created page with "The chmod command is found primarily on Unix-like machines. It is used to modify the permissions of a file or directory. Syntax: chmod mode file Example: chmod 766 readme.txt E...")
 
m (category)
Line 21: Line 21:


In SMF, some files and directories must be writeable by users other than the owner for complete and proper operation. Examples include the Settings.php file and the attachments directory.
In SMF, some files and directories must be writeable by users other than the owner for complete and proper operation. Examples include the Settings.php file and the attachments directory.
[[Category: SMF Terminology]]

Revision as of 14:39, 25 March 2011

The chmod command is found primarily on Unix-like machines. It is used to modify the permissions of a file or directory.

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.

In SMF, some files and directories must be writeable by users other than the owner for complete and proper operation. Examples include the Settings.php file and the attachments directory.



Advertisement: