Linux chown 命令
Linux chown(英文全拼:change owner)命令用于设置文件所有者和文件关联组的命令。
Linux/Unix 是多人多工操作系统,所有的文件皆有拥有者。利用 chown 将指定文件的拥有者改为指定的用户或组,用户可以是用户名或者用户 ID,组可以是组名或者组 ID,文件是以空格分开的要改变权限的文件列表,支持通配符。 。
chown 需要超级用户 root 的权限才能执行此命令。
只有超级用户和属于组的文件所有者才能变更文件关联组。非超级用户如需要设置关联组可能需要使用 chgrp 命令。
使用权限 : root
语法
chown [-cfhvR] [--help] [--version] user[:group] file...
参数 :
- user : 新的文件拥有者的使用者 ID
- group : 新的文件拥有者的使用者组(group)
- -c : 显示更改的部分的信息
- -f : 忽略错误信息
- -h :修复符号链接
- -v : 显示详细的处理信息
- -R : 处理指定目录以及其子目录下的所有文件
- –help : 显示辅助说明
- –version : 显示版本
实例
把 /var/run/httpd.pid 的所有者设置 root:
chown root /var/run/httpd.pid
将文件 file1.txt 的拥有者设为 runoob,群体的使用者 runoobgroup :
chown runoob:runoobgroup file1.txt
将当前前目录下的所有文件与子目录的拥有者皆设为 runoob,群体的使用者 runoobgroup:
chown -R runoob:runoobgroup *
把 /home/runoob 的关联组设置为 512 (关联组ID),不改变所有者:
chown :512 /home/runoob
2.系统帮助
- 用法:chown [选项]… [所有者][:[组]] 文件…
- 或:chown [选项]… —reference=参考文件 文件…
- Change the owner and/or group of each FILE to OWNER and/or GROUP.
- With —reference, change the owner and group of each FILE to those of RFILE.
- –c, —changes like verbose but report only when a change is made
- –f, —silent, —quiet suppress most error messages
- –v, —verbose output a diagnostic for every file processed
- —dereference affect the referent of each symbolic link (this is
- the default), rather than the symbolic link itself
- –h, —no–dereference affect symbolic links instead of any referenced file
- (useful only on systems that can change the
- ownership of a symlink)
- —from=当前所有者:当前所属组
- 只当每个文件的所有者和组符合选项所指定时才更改所
- 有者和组。其中一个可以省略,这时已省略的属性就不
- 需要符合原有的属性。
- —no–preserve–root do not treat ‘/’ specially (the default)
- —preserve–root fail to operate recursively on ‘/’
- —reference=RFILE use RFILE‘s owner and group rather than
- specifying OWNER:GROUP values
- -R, –recursive 权限递归
- The following options modify how a hierarchy is traversed when the -R
- option is also specified. If more than one is specified, only the final
- one takes effect.
- -H if a command line argument is a symbolic link
- to a directory, traverse it
- -L traverse every symbolic link to a directory
- encountered
- -P do not traverse any symbolic links (default)
- –help 显示此帮助信息并退出
- –version 显示版本信息并退出
- Owner is unchanged if missing. Group is unchanged if missing, but changed
- to login group if implied by a ‘:‘ following a symbolic OWNER.
- OWNER and GROUP may be numeric as well as symbolic.
- 示例:
- chown root /u 将 /u 的属主更改为”root”。
- chown root:staff /u 和上面类似,但同时也将其属组更改为”staff”。
- chown -hR root /u 将 /u 及其子目录下所有文件的属主更改为”root”。
- GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
- 请向<http://translationproject.org/team/zh_CN.html> 报告chown 的翻译错误
- 要获取完整文档,请运行:info coreutils ‘chown invocation‘
3.示例
3.1.更改拥有者
- [root@itbkz s]#mkdir mulu
- [root@itbkz s]#touch mulu/test.txt
- [root@itbkz s]#ll -d mulu
- drwxr–xr–x 2 root root 22 12月 5 17:00 mulu
- [root@itbkz s]#ll mulu/test.txt
- –rw–r—r— 1 root root 0 12月 5 17:00 mulu/test.txt
- [root@itbkz s]#ll
- 总用量 0
- drwxr–xr–x 2 root root 22 12月 5 17:00 mulu
- [root@itbkz s]#chown itbkz mulu
- [root@itbkz s]#ll
- 总用量 0
- drwxr–xr–x 2 itbkz root 22 12月 5 17:00 mulu
3.2.更改拥有组
- [root@itbkz s]#chown .itbkz mulu
- [root@itbkz s]#ll
- 总用量 0
- drwxr–xr–x 2 root itbkz 22 12月 5 17:00 mulu
3.3.更改拥有者和组
- [root@itbkz s]#chown itbkz:itbkz mulu
- [root@itbkz s]#ll
- 总用量 0
- drwxr–xr–x 2 itbkz itbkz 22 12月 5 17:00 mulu
3.4.拥有用户及组权限递归
- 方法1:
- [root@itbkz s]#chown -R itbkz:itbkz mulu
- [root@itbkz s]#ll -d mulu
- drwxr–xr–x 2 itbkz itbkz 22 12月 5 17:00 mulu
- [root@itbkz s]#ll mulu/test.txt
- –rw–r—r— 1 itbkz itbkz 0 12月 5 17:00 mulu/test.txt
- 方法2:
- [root@itbkz s]#chown -R itbkz.itbkz mulu
- [root@itbkz s]#ll -d mulu
- drwxr–xr–x 2 itbkz itbkz 22 12月 5 17:00 mulu
- [root@itbkz s]#ll mulu/test.txt
- –rw–r—r— 1 itbkz itbkz 0 12月 5 17:00 mulu/test.txt