CHOWN(1) | User Commands | CHOWN(1) |
chown - change file ownership
chown [-fhR] owner[:group] file...
chown -s [-fhR] ownersid[:groupsid] file...
chown -R [-f] [-H | -L | -P] owner[:group] file...
chown -s -R [-f] [-H | -L | -P] ownersid[:groupsid] file...
The chown utility sets the user ID of the file named by each file to the user ID specified by owner, and, optionally, sets the group ID to that specified by group.
If chown is invoked by other than the super-user, the set-user-ID bit is cleared.
Only the owner of a file (or the super-user) can change the owner of that file.
The operating system has a configuration option {_POSIX_CHOWN_RESTRICTED}, to restrict ownership changes. When this option is in effect the owner of the file is prevented from changing the owner ID of the file. Only the super-user can arbitrarily change owner IDs whether or not this option is in effect. To set this configuration option, include the following line in /etc/system:
set rstchown = 1
To disable this option, include the following line in /etc/system:
set rstchown = 0
{_POSIX_CHOWN_RESTRICTED} is enabled by default. See system(5) and fpathconf(2).
The following options are supported:
-f
-h
-H
-L
-P
-R
-s
Specifying more than one of the mutually-exclusive options -H, -L, or -P is not considered an error. The last option specified determines the behavior of chown.
The following operands are supported:
owner[:group]
file
See largefile(7) for the description of the behavior of chown when encountering files greater than or equal to 2 Gbyte ( 2^31 bytes).
Example 1 Changing Ownership of All Files in the Hierarchy
The following command changes ownership of all files in the hierarchy, including symbolic links, but not the targets of the links:
example% chown −R −h owner[:group] file...
See environ(7) for descriptions of the following environment variables that affect the execution of chown: LANG, LC_ALL, LC_CTYPE, LC_MESSAGES, and NLSPATH.
The following exit values are returned:
0
>0
/etc/passwd
See attributes(7) for descriptions of the following attributes:
ATTRIBUTE TYPE | ATTRIBUTE VALUE |
CSI | Enabled. See NOTES. |
Interface Stability | Committed |
Standard | See standards(7). |
chgrp(1), chmod(1), ksh93(1), chown(2), fpathconf(2), passwd(5), system(5), attributes(7), environ(7), largefile(7), standards(7)
chown is CSI-enabled except for the owner and group names.
In the past the behavior of /usr/xpg4/bin/chown and /usr/bin/chown utilities was different. Now they behave the same way.
February 21, 2019 | OmniOS |