修改文件/目录所属组:
[root@localhost app]# chgrp test 111111.txt
-------------------------------------------------------------------------------------------------------------------------
修改文件/目录所属人:
[root@localhost app]# chown test 111111.txt
-------------------------------------------------------------------------------------------------------------------------
修改文件/目录所属人&组:
[root@localhost app]# chown admin:app 111111.txt
-------------------------------------------------------------------------------------------------------------------------
递归修改目录所属人&组:(R参数大写,意思为递归目录下所有目录与文件)
[root@localhost app]# chown -R admin:app 111
[root@localhost app]# ll
drwxr-xr--. 2 admin app 21 Jan 19 17:18 111
-------------------------------------------------------------------------------------------------------------------------
修改文件为用户admin可读 可写 可执行,
app组为可读 不可写 可执行,
其他用户&组不可读 不可写 不可执行
[root@localhost app]# chmod 750 111111.txt
[root@localhost app]# ll
-rwxr-x---. 1 admin app 0 Jan 19 16:42 111111.txt
-------------------------------------------------------------------------------------------------------------------------
修改文件为用户admin可读 可写 可执行,
app组为可读 不可写 可执行,
其他用户&组不可读 不可写 不可执行
[root@localhost app]# chmod 750 111111.txt
[root@localhost app]# ll
-rwxr-x---. 1 admin app 0 Jan 19 16:42 111111.txt
-------------------------------------------------------------------------------------------------------------------------
修改文件为用户test可读 可写 可执行,
test组为可读 不可写 可执行,
其他用户&组可读 不可写 不可执行
[root@localhost app]# chmod -R 754 111
[root@localhost app]# ll
drwxr-xr--. 2 test test 21 Jan 19 17:18 111