BreadCrumbs: Chmod

Chmod

From Luke Jackson

(Difference between revisions)
Jump to: navigation, search
Revision as of 02:39, 26 November 2007 (edit)
Ljackson (Talk | contribs)

← Previous diff
Revision as of 02:42, 26 November 2007 (edit)
Ljackson (Talk | contribs)

Next diff →
Line 1: Line 1:
-{{nofootnotes}}+The '''chmod''' command (abbreviated from '''ch'''ange '''mod'''e) is a UNIX shell command in Unix and Unix-like environments.
-{{lowercase|title=chmod}} +
-The '''chmod''' command (abbreviated from '''ch'''ange '''mod'''e) is a [[UNIX shell|shell]] command in [[Unix]] and [[Unix-like]] environments.+When executed, the command can change file system modes of Computer file|files and directory (file systems)|directories. The modes include permissions and special modes.
- +
-When executed, the command can change file system modes of [[Computer file|files]] and [[directory (file systems)|directories]]. The modes include [[permissions]] and special modes.+
== History == == History ==
-A <tt>chmod</tt> command first appeared in [[AT&T]] [[Unix]] version 1, and is still used today on Unix-like machines.+A <tt>chmod</tt> command first appeared in AT&T Unix version 1, and is still used today on Unix-like machines.
==Usage== ==Usage==
Line 20: Line 17:
==Options== ==Options==
The <tt>chmod</tt> command has a number of command line options that affect its behavior. The most common options are: The <tt>chmod</tt> command has a number of command line options that affect its behavior. The most common options are:
-*<tt>-R</tt>: Changes the modes of directories and files [[recursion|recursively]]+*<tt>-R</tt>: Changes the modes of directories and files recursion|recursively
-<!-- <tt>-h</tt>: if the file specified is a [[soft link]], change the mode of the link itself rather than the file that the link points to. -- this option is not supported by GNU chmod -->+<!-- <tt>-h</tt>: if the file specified is a soft link, change the mode of the link itself rather than the file that the link points to. -- this option is not supported by GNU chmod -->
*<tt>-v</tt>: Verbose mode; lists all files as they are being processed *<tt>-v</tt>: Verbose mode; lists all files as they are being processed
==String modes== ==String modes==
-:''See also: [[File system permissions#Symbolic notation|Symbolic notation of file system permissions]]''+:''See also: File system permissions#Symbolic notation|Symbolic notation of file system permissions''
To the <tt>chmod</tt> utility, all permissions and special modes are represented by its mode parameter. One way to adjust the mode of files or directories is to specify a symbolic mode. The symbolic mode is composed of three components, which are combined to form a single string of text: To the <tt>chmod</tt> utility, all permissions and special modes are represented by its mode parameter. One way to adjust the mode of files or directories is to specify a symbolic mode. The symbolic mode is composed of three components, which are combined to form a single string of text:
Line 70: Line 67:
|<TT>X</TT> || special execute || which is not a permission in itself but rather can be used instead of x. It applies execute permissions to directories regardless of their current permissions and applies execute permissions to a file which already has at least 1 execute permission bit already set (either user, group or other). It is only really useful when used with '+' and usually in combination with the -R option for giving group or other access to a big directory tree without setting execute permission on normal files (such as text files), which would normally happen if you just used "chmod -R a+rx .", whereas with 'X' you can do "chmod -R a+rX ." instead |<TT>X</TT> || special execute || which is not a permission in itself but rather can be used instead of x. It applies execute permissions to directories regardless of their current permissions and applies execute permissions to a file which already has at least 1 execute permission bit already set (either user, group or other). It is only really useful when used with '+' and usually in combination with the -R option for giving group or other access to a big directory tree without setting execute permission on normal files (such as text files), which would normally happen if you just used "chmod -R a+rx .", whereas with 'X' you can do "chmod -R a+rX ." instead
|- |-
-|<tt>s</tt> || setuid/gid || details in [[#Special modes|Special modes section]]+|<tt>s</tt> || setuid/gid || details in #Special modes|Special modes section
|- |-
-|<tt>t</tt> || sticky || details in [[#Special modes|Special modes section]]+|<tt>t</tt> || sticky || details in #Special modes|Special modes section
|} |}
Line 100: Line 97:
==Octal numbers== ==Octal numbers==
-:''See also: [[File system permissions#Octal notation|Octal notation of file system permissions]]''+:''See also: File system permissions#Octal notation|Octal notation of file system permissions''
The <tt>chmod</tt> command also accepts three- and four-digit octal numbers representing modes. See the article mentioned above for more. Using a four-digit octal number to set the modes of a file or directory named <tt>sample</tt> would look something like this: The <tt>chmod</tt> command also accepts three- and four-digit octal numbers representing modes. See the article mentioned above for more. Using a four-digit octal number to set the modes of a file or directory named <tt>sample</tt> would look something like this:
Line 115: Line 112:
==Special modes== ==Special modes==
-:''See also: [[File system permissions#Additional permissions|Additional file system permissions]]''+:''See also: File system permissions#Additional permissions|Additional file system permissions''
-The <tt>chmod</tt> command is also capable of changing the additional permissions or special modes of a file or directory. The symbolic modes use <tt>s</tt> to represent the ''[[setuid]]'' and ''[[setgid]]'' modes, and <tt>t</tt> to represent the ''[[Sticky bit|sticky]]'' mode. The modes are only applied to the appropriate classes, regardless of whether or not other classes are specified.+The <tt>chmod</tt> command is also capable of changing the additional permissions or special modes of a file or directory. The symbolic modes use <tt>s</tt> to represent the ''setuid'' and ''setgid'' modes, and <tt>t</tt> to represent the ''Sticky bit|sticky'' mode. The modes are only applied to the appropriate classes, regardless of whether or not other classes are specified.
Most operating systems support the specification of special modes using octal modes, but some do not. On these systems, only the symbolic modes can be used. Most operating systems support the specification of special modes using octal modes, but some do not. On these systems, only the symbolic modes can be used.
Line 130: Line 127:
*<tt>chmod 666 file</tt> &ndash; ADDS! read and write access for the owner, the group, and all others. *<tt>chmod 666 file</tt> &ndash; ADDS! read and write access for the owner, the group, and all others.
*<tt>chmod 0755 file</tt> &ndash; equivalent to <tt>u=rwx (4+2+1),go=rx (4+1 & 4+1)</tt>. The <tt>0</tt> specifies ''no special modes''. *<tt>chmod 0755 file</tt> &ndash; equivalent to <tt>u=rwx (4+2+1),go=rx (4+1 & 4+1)</tt>. The <tt>0</tt> specifies ''no special modes''.
-*<tt>chmod 4755 file</tt> &ndash; the <tt>4</tt> specifies ''[[Setuid|set user ID]]''.+*<tt>chmod 4755 file</tt> &ndash; the <tt>4</tt> specifies ''Setuid|set user ID''.
*<tt>find path/ -type d -exec chmod a-x {} \;</tt> &ndash; sets a-x for all directories in tree starting from path/ (use '-type f' to match files only). *<tt>find path/ -type d -exec chmod a-x {} \;</tt> &ndash; sets a-x for all directories in tree starting from path/ (use '-type f' to match files only).
*<tt>find path/ -type d -exec chmod 777 {} \; </tt> allows directory browsing ls for example if you've reset permissions for Samba write access. *<tt>find path/ -type d -exec chmod 777 {} \; </tt> allows directory browsing ls for example if you've reset permissions for Samba write access.

Revision as of 02:42, 26 November 2007

The chmod command (abbreviated from change mode) is a UNIX shell command in Unix and Unix-like environments.

When executed, the command can change file system modes of Computer file|files and directory (file systems)|directories. The modes include permissions and special modes.

Contents

History

A chmod command first appeared in AT&T Unix version 1, and is still used today on Unix-like machines.

Usage

The chmod command options are specified like this:

$ chmod [options] mode file1 ...

To view what the permissions currently are, type:

$ ls -l

Options

The chmod command has a number of command line options that affect its behavior. The most common options are:

  • -R: Changes the modes of directories and files recursion|recursively
  • -v: Verbose mode; lists all files as they are being processed

String modes

See also: File system permissions#Symbolic notation|Symbolic notation of file system permissions

To the chmod utility, all permissions and special modes are represented by its mode parameter. One way to adjust the mode of files or directories is to specify a symbolic mode. The symbolic mode is composed of three components, which are combined to form a single string of text:

$ chmod [references][operator][modes] file1 ...

The references (or classes) are used to distinguish the users to whom the permissions apply. If no references are specified it defaults to "all". They are represented by one or more of the following letters:

Reference Class Description
u user the owner of the file
g group users who are members of the file's group
o others users who are not the owner of the file or members of the group
a all all three of the above, is the same as ugo

The chmod program uses an operator to specify how the modes of a file should be adjusted. The following operators are accepted:

Operator Description
+ adds the specified modes to the specified classes
- removes the specified modes from the specified classes
= the modes specified are to be made the exact modes for the specified classes

The modes indicate which permissions are to be granted or taken away from the specified classes. There are three basic modes which correspond to the basic permissions:

Mode Name Description
r read read a file or list a directory's contents
w write write to a file or directory
x execute execute a file or recurse a directory tree
X special execute which is not a permission in itself but rather can be used instead of x. It applies execute permissions to directories regardless of their current permissions and applies execute permissions to a file which already has at least 1 execute permission bit already set (either user, group or other). It is only really useful when used with '+' and usually in combination with the -R option for giving group or other access to a big directory tree without setting execute permission on normal files (such as text files), which would normally happen if you just used "chmod -R a+rx .", whereas with 'X' you can do "chmod -R a+rX ." instead
s setuid/gid Special modes section
t sticky Special modes section

The combination of these three components produces a string that is understood by the chmod command. Multiple changes can be specified by separating multiple symbolic modes with commas.

String mode examples

For example, the following command would be used to add the read and write permissions to the user and group classes of a file or directory named sample:

$ chmod ug+rw sample
$ ls -ld sample
drw-rw----   2 unixguy  unixguy       96 Dec  8 12:53 sample

This command removes all permissions, and allows no one to read, write, or execute the file named sample.

$ chmod a-rwx sample
$ ls -l sample
----------   2 unixguy  unixguy       96 Dec  8 12:53 sample

The following command changes the permissions for the user and the group to read and execute only (no write permission) on sample .

Sample file permissions before command
$ ls -ld sample
drw-rw----   2 unixguy  unixguy       96 Dec  8 12:53 sample
$ chmod ug=rx sample
$ ls -ld sample
dr-xr-x---   2 unixguy  unixguy       96 Dec  8 12:53 sample

Octal numbers

See also: File system permissions#Octal notation|Octal notation of file system permissions

The chmod command also accepts three- and four-digit octal numbers representing modes. See the article mentioned above for more. Using a four-digit octal number to set the modes of a file or directory named sample would look something like this:

$ chmod 0664 sample

Assuming that the setuid, setgid and sticky bits are not set, this is equivalent to:

$ chmod 664 sample

or

$ chmod +r,-x,ug+w sample

Special modes

See also: File system permissions#Additional permissions|Additional file system permissions

The chmod command is also capable of changing the additional permissions or special modes of a file or directory. The symbolic modes use s to represent the setuid and setgid modes, and t to represent the Sticky bit|sticky mode. The modes are only applied to the appropriate classes, regardless of whether or not other classes are specified.

Most operating systems support the specification of special modes using octal modes, but some do not. On these systems, only the symbolic modes can be used.

Examples

  • chmod +r file – read is added for all
  • chmod -x file – execute permission is removed for all
  • chmod u=rw,go= file – read and write is set for the owner, all permissions are cleared for the group and others
  • chmod +rw file – change the permissions of the file file to read and write for all.
  • chmod -R u+w,go-w docs/ – change the permissions of the directory docs and all its contents to add write access for the user, and deny write access for everybody else.
  • chmod 666 file – ADDS! read and write access for the owner, the group, and all others.
  • chmod 0755 file – equivalent to u=rwx (4+2+1),go=rx (4+1 & 4+1). The 0 specifies no special modes.
  • chmod 4755 file – the 4 specifies Setuid|set user ID.
  • find path/ -type d -exec chmod a-x {} \; – sets a-x for all directories in tree starting from path/ (use '-type f' to match files only).
  • find path/ -type d -exec chmod 777 {} \; allows directory browsing ls for example if you've reset permissions for Samba write access.
  • chmod -R u+rwX,g-rwx,o-rwx <directory> – set a directory tree to rwx for owner directories, rw for owner files, --- for group and all.

Sources

Personal tools