-
以test为例,目前test归root用户拥有,也归root组拥有
[root@localhost home]# ls -al
total 36
drwxr-xr-x 6 root root 4096 Jan 28 12:20 .
drwxr-xr-x 21 root root 4096 Jan 27 20:20 ..
drwxr-xr-x 5 redhat3 root 4096 Jan 28 11:57 eda
drwx------ 2 root root 16384 Jan 25 20:40 lost+found
drwx------ 13 redhat3 redhat3 4096 Jan 28 12:03 redhat3
drwxr-xr-x 2 root root 4096 Jan 28 12:20 test
-
2
现在若这样执行命令的话,则归redhat3用户拥有,但是还是归root组,意思是只修改了用户,没有修改组
[root@localhost home]# ls -al
total 36
drwxr-xr-x 6 root root 4096 Jan 28 12:20 .
drwxr-xr-x 21 root root 4096 Jan 27 20:20 ..
drwxr-xr-x 5 redhat3 root 4096 Jan 28 11:57 eda
drwx------ 2 root root 16384 Jan 25 20:40 lost+found
drwx------ 13 redhat3 redhat3 4096 Jan 28 12:03 redhat3
drwxr-xr-x 2 redhat3 root 4096 Jan 28 12:20 test
-
3
现在若这样执行命令的话,则归redhat3用户拥有,组也改为redhat3组,意思是修改了用户,也修改组
[root@localhost home]# chown redhat3:redhat3 /home/test/
[root@localhost home]# ls -al
-
4
现在若这样执行命令的话,则归redhat3用户拥有,组也改为root组,意思是修改了用户,也修改组
用户修改 组也修改
[root@localhost home]# chown redhat3:root /home/test/
[root@localhost home]# ls -al
total 36
drwxr-xr-x 6 root root 4096 Jan 28 12:20 .
drwxr-xr-x 21 root root 4096 Jan 27 20:20 ..
drwxr-xr-x 5 redhat3 redhat3 4096 Jan 28 11:57 eda
drwx------ 2 root root 16384 Jan 25 20:40 lost+found
drwx------ 13 redhat3 redhat3 4096 Jan 28 12:03 redhat3
drwxr-xr-x 2 redhat3 root 4096 Jan 28 12:20 test
-
5
现在若这样执行命令的话,则归redhat3用户拥有,组也改为redhat3组,意思是修改了用户,也修改修改组不过这种方法是redhat3:后面省略了组名。用户修改,组也修改,不过该组就是该用户登录时所属的组
[root@localhost home]# chown redhat3: /home/test/
[root@localhost home]# ls -al
total 36
drwxr-xr-x 6 root root 4096 Jan 28 12:20 .
drwxr-xr-x 21 root root 4096 Jan 27 20:20 ..
drwxr-xr-x 5 redhat3 redhat3 4096 Jan 28 11:57 eda
drwx------ 2 root root 16384 Jan 25 20:40 lost+found
drwx------ 13 redhat3 redhat3 4096 Jan 28 12:03 redhat3
drwxr-xr-x 2 redhat3 redhat3 4096 Jan 28 12:20 test
-
6
现在若这样执行命令的话,则归redhat3用户没有变,组也改为root组,意思是只修改了组
[root@localhost home]# chown :root /home/test/
[root@localhost home]# ls -al
total 36
drwxr-xr-x 6 root root 4096 Jan 28 12:20 .
drwxr-xr-x 21 root root 4096 Jan 27 20:20 ..
drwxr-xr-x 5 redhat3 redhat3 4096 Jan 28 11:57 eda
drwx------ 2 root root 16384 Jan 25 20:40 lost+found
drwx------ 13 redhat3 redhat3 4096 Jan 28 12:03 redhat3
drwxr-xr-x 2 redhat3 root 4096 Jan 28 12:20 test
[root@localhost home]#
-
7
总结:chown 用户名:组 名 文件 若同时修改用户名和组名时,需要把两者都写上,若只修改用户名的话,则组名及其用户名后面的冒号就不要用;若只修改组名,而用户名不修改的话,则是:组名;若只修改的用户名,组名就是所登录时的组名的话,就是用户名:
相关文章
- 08-16Django-Channels使用和部署
- 08-16OpenGL 中关于ImageTexture使用中遇到的两个问题 —— 快速清空 与 读写错误
- 08-16不使用DataContext直接将ViewModels绑定到ItemsControl控件
- 08-16使用的conda命令大全
- 08-16Netty如何实现服务的优雅关闭
- 08-16Windows破解&逆向-CrackMe_1实例(使用IDA Pro修改静态区资源)
- 08-16教你如何使用和下载字体图标
- 08-16如何分析matlab程序的主要效率问题
- 08-16static方法中为什么使用的都是静态变量
- 08-16Spring Cloud中,如何解决Feign/Ribbon第一次请求失败的问题?