码迷,mamicode.com
首页 > 其他好文 > 详细

更改所有者和所属组chown

时间:2018-02-01 10:44:03      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:linux   host   mod   chown   文件   linu   字幕   txt   chmod   

[root@localhost ~]# ll
总用量 4
drwxr-xr-x. 3 root root 15 1月 30 00:58 1
-rw-r--r--. 1 root root 0 1月 31 01:35 2.txt
-rw-------. 1 root root 1418 1月 10 08:17 anaconda-ks.cfg
[root@localhost ~]# chown ygw 1/
[root@localhost ~]# ll
总用量 4
drwxr-xr-x. 3 ygw root 15 1月 30 00:58 1
-rw-r--r--. 1 root root 0 1月 31 01:35 2.txt
-rw-------. 1 root root 1418 1月 10 08:17 anaconda-ks.cfg
chown 这里我们修改所属主
[root@localhost ~]# chgrp ygwlinux 1/
[root@localhost ~]# ll
总用量 4
drwxr-xr-x. 3 ygw ygwlinux 15 1月 30 00:58 1
-rw-r--r--. 1 root root 0 1月 31 01:35 2.txt
-rw-------. 1 root root 1418 1月 10 08:17 anaconda-ks.cfg
chgrp 更改所属组
但是chown也可以修改所属组
[root@localhost ~]# chown ygwlinux:ygw 1/
[root@localhost ~]# ll
总用量 4
drwxr-xr-x. 3 ygwlinux ygw 15 1月 30 00:58 1
-rw-r--r--. 1 root root 0 1月 31 01:35 2.txt
-rw-------. 1 root root 1418 1月 10 08:17 anaconda-ks.cfg
[root@localhost ~]#
加上:可以一起修改文件或目录的所属主和所属组
chown -R 和chmod-R的用法是一样的
修改目录,包括目录下的字幕的所属主或所属组,也可以同时修改所属主和所属组

更改所有者和所属组chown

标签:linux   host   mod   chown   文件   linu   字幕   txt   chmod   

原文地址:http://blog.51cto.com/12777709/2067559

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!