在创建时,任何文件的拥有者都是创建该文件的用户。当然用户可以修改该文件的拥有
者及拥有者组。在 shell 中,使用 chmod 和 chgrp函数来修改。示例如下:
[root@localhost home]# touch testfile //由 root 用户创建文件
[root@localhost home]# ls testfile –l
-rw–w--w- 1 root root 0 Jun 7 19:35 testfile //文件的拥有者及拥有者级均为 root
[root@localhost home]# chown yangzongde testfile //修改文件拥有者为 yangzongde
[root@localhost home]# ls testfile -l
-rw–w--w- 1 yangzongde root 0 Jun 7 19:35 testfile //查看文件拥有者为 yangzongde,但组
仍为 root
[root@localhost home]# chgrp yangzongde testfile //修改拥有者组为 yangzongde
[root@localhost home]# ls testfile -l
-rw–w--w- 1 yangzongde yangzongde 0 Jun 7 19:35 testfile
[root@localhost home]# chown root:root testfile // 使用 chown 一次性修改拥有者及组
[root@localhost home]# ls testfile -l
-rw–w--w- 1 root root 0 Jun 7 19:35 testfile
相关文章
- 11-10带有gunicorn和nginx的Django:HTTP 500没有出现在日志文件中
- 11-10【转载】HDFS 上传文件不均衡和Balancer太慢的问题
- 11-102016.2.24 利用用户控件和委托完美解决快速选择txbbox
- 11-10利用os和pandas来合并当前目录下所有excel文件
- 11-10Hive文件存储格式和hive数据压缩
- 11-10windows API实现用户选择文件路径的对话框
- 11-10三(一)、mybatis映射文件-增删改和参数处理
- 11-10三(二)、映射文件之select返回和resultMap
- 11-10D类IP地址和组播传输
- 11-10CFileDialog(文件夹对话框类)和CFontDialog(字体设置对话框类)的使用学习