linux亦步亦趋(11)文件权限管理

chown 命令:更改文件或文件夹的所有者

用法:chown  用户名  文件或文件夹名

实例如下:

-rwxrwxrwx 1 root root 0 07-22 15:34 test.sh
[root@localhost test]# chown test test.sh
[root@localhost test]# ls -l
总计 0
-rwxrwxrwx 1 test root 0 07-22 15:34 test.sh

注意:用户名是系统中必须存在的用户名,我们也可以临时添加一个命令如下:useradd  newusername 设置密码:passwd 用户名,

 实例如下:

[root@localhost test]# useradd newuser
[root@localhost test]# passwd newuser
Changing password for user newuser.
New UNIX password:
BAD PASSWORD: it is based on a dictionary word
Retype new UNIX password:
passwd: all authentication tokens updated successfully.
[root@localhost test]#

chgrp命令:更改文件或者文件夹所属组

用法:chgrp  组名  文件或文件夹名

实例如下:

[root@localhost test]# ls -l
总计 0
-rwxrwxrwx 1 test root 0 07-22 15:34 test.sh
[root@localhost test]# chgrp test test.sh
[root@localhost test]# ls -l
总计 0
-rwxrwxrwx 1 test test 0 07-22 15:34 test.sh

注意:组必须是一个存在的组名。我们也可以临时加一个组、命令如下:groupadd  newgroupname

[root@localhost test]# groupadd test1
[root@localhost test]#

相关推荐